diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_password_policy | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/auth_password_policy')
68 files changed, 6140 insertions, 0 deletions
diff --git a/addons/auth_password_policy/__init__.py b/addons/auth_password_policy/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/addons/auth_password_policy/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/addons/auth_password_policy/__manifest__.py b/addons/auth_password_policy/__manifest__.py new file mode 100644 index 00000000..cefed18f --- /dev/null +++ b/addons/auth_password_policy/__manifest__.py @@ -0,0 +1,13 @@ +{ + 'name': "Password Policy", + "summary": "Implement basic password policy configuration & check", + 'category': 'Hidden/Tools', + 'depends': ['base_setup', 'web'], + 'data': [ + 'data/defaults.xml', + 'views/assets.xml', + 'views/res_users.xml', + 'views/res_config_settings_views.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/auth_password_policy/data/defaults.xml b/addons/auth_password_policy/data/defaults.xml new file mode 100644 index 00000000..c398ca3f --- /dev/null +++ b/addons/auth_password_policy/data/defaults.xml @@ -0,0 +1,6 @@ +<odoo> + <record model="ir.config_parameter" id="minlength"> + <field name="key">auth_password_policy.minlength</field> + <field name="value" type="int">8</field> + </record> +</odoo> diff --git a/addons/auth_password_policy/i18n/ar.po b/addons/auth_password_policy/i18n/ar.po new file mode 100644 index 00000000..a5d640cd --- /dev/null +++ b/addons/auth_password_policy/i18n/ar.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Ali Alrehawi <alrehawi@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ali Alrehawi <alrehawi@hotmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "المُعرف" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "الحد الأدنى لطول كلمة المرور" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "الحد الأدنى لعدد أحرف كلمات المرور اللازمة، ضع 0 لإلغاء التفعيل." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "يجب أن تتكون كلمات المرور من %d حرفًا، الحالية %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"المطلوب: %s.\n" +"\n" +"تلميح: زد طول كلمة المرور،استخدم كلمات متعددة ورموز لتقوية كلمة المرور." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "المستخدمون" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "الحد الأدنى %d حرفًا" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "الحد الأدنى %d حرفًا" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "الحد الأدنى %d كلمة" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "لا توجد متطلبات" diff --git a/addons/auth_password_policy/i18n/auth_password_policy.pot b/addons/auth_password_policy/i18n/auth_password_policy.pot new file mode 100644 index 00000000..3b240bcf --- /dev/null +++ b/addons/auth_password_policy/i18n/auth_password_policy.pot @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-01 07:28+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/az.po b/addons/auth_password_policy/i18n/az.po new file mode 100644 index 00000000..4aeeec2e --- /dev/null +++ b/addons/auth_password_policy/i18n/az.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:48+0000\n" +"PO-Revision-Date: 2018-10-08 07:10+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/bg.po b/addons/auth_password_policy/i18n/bg.po new file mode 100644 index 00000000..7496c45f --- /dev/null +++ b/addons/auth_password_policy/i18n/bg.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: aleksandar ivanov, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Потребители" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/bn.po b/addons/auth_password_policy/i18n/bn.po new file mode 100644 index 00000000..583993f4 --- /dev/null +++ b/addons/auth_password_policy/i18n/bn.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "আইডি " + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "ব্যবহারকারীরা" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/bs.po b/addons/auth_password_policy/i18n/bs.po new file mode 100644 index 00000000..00554374 --- /dev/null +++ b/addons/auth_password_policy/i18n/bs.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:48+0000\n" +"PO-Revision-Date: 2018-10-08 06:48+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/ca.po b/addons/auth_password_policy/i18n/ca.po new file mode 100644 index 00000000..ccced805 --- /dev/null +++ b/addons/auth_password_policy/i18n/ca.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Longitud mínima del mot clau" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"El nombre mínim de caràcters que ha de contenir un mot clau, deixar en 0 per" +" deshabilitar. " + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Les contrasenyes han de tenir com al menys %d caràcters, en té %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Requerit: %s.\n" +"\n" +"Pista: allarga, fes servir múltiples paraules i utilitza caràcters que no siguin lletres per augmentar la seguretat de la contrasenya. " + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Usuaris" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "al menys %d classes de caràcters" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "Al menys %d caràcters" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "Al menys %d paraules" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "Sense requeriments " diff --git a/addons/auth_password_policy/i18n/ckb.po b/addons/auth_password_policy/i18n/ckb.po new file mode 100644 index 00000000..97bab0fe --- /dev/null +++ b/addons/auth_password_policy/i18n/ckb.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ناسنامە" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "بەکارهێنەرەکان" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/cs.po b/addons/auth_password_policy/i18n/cs.po new file mode 100644 index 00000000..959df3e7 --- /dev/null +++ b/addons/auth_password_policy/i18n/cs.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Damian Brencic <brencicdamian12313@gmail.com>, 2021 +# David Kliment <daklime@gmail.com>, 2021 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimální délka hesla" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "Minimální počet znaků hesla. Pro vypnutí této volby zadejte 0." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Hesla musí mít alespoň %d znaků, rozumím %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Požadované: %s.\n" +"\n" +"Tip: zvětšete délku hesla, použijte více slov a použijte znaky jiné než písmeno, abyste zvýšili sílu hesla." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "alespoň %d třídy znaků" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "alespoň %d znaky" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "alespoň %d slova" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "žádné požadavky" diff --git a/addons/auth_password_policy/i18n/da.po b/addons/auth_password_policy/i18n/da.po new file mode 100644 index 00000000..220c3258 --- /dev/null +++ b/addons/auth_password_policy/i18n/da.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# JonathanStein <jstein@image.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Mindste længde på kodeord" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Mindste antal tegn, som kodeord skal indeholde (sættes til 0 for at slå " +"kontrollen fra)." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Kodeordet skal have mindst %d tegn (kun %d tegn indtastet)." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Påkrævet: %s.\n" +"\n" +"Anbefaling: Forøg længden, brug flere ord og brug tegn, der ikke er bogstaver for at øge kodeordets styrke." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Brugere" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "mindst %d tegn-typer" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "mindst %d tegn" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "mindst %d ord" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "ingen krav" diff --git a/addons/auth_password_policy/i18n/de.po b/addons/auth_password_policy/i18n/de.po new file mode 100644 index 00000000..128e4ece --- /dev/null +++ b/addons/auth_password_policy/i18n/de.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimale Passwortlänge" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimale Anzahl Zeichen, aus denen einen Passwort bestehen muss. Zum " +"Deaktivieren auf 0 setzen." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Passwörter müssen mindestens %d Zeichen haben, es sind %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Erforderlich: %s.\n" +"\n" +"Tipp: verwenden Sie mehr Zeichen, mehrere Wörter und weitere Zeichen als nur Buchstaben, um die Stärke Ihres Passworts zu erhöhen." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "wenigstens %d Zeichen-Arten" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "mindestens %d Zeichen" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "mindestens %d Wörter" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "keine Anforderungen" diff --git a/addons/auth_password_policy/i18n/el.po b/addons/auth_password_policy/i18n/el.po new file mode 100644 index 00000000..2cf70f0e --- /dev/null +++ b/addons/auth_password_policy/i18n/el.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Κωδικός" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Χρήστες" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/eo.po b/addons/auth_password_policy/i18n/eo.po new file mode 100644 index 00000000..28d58b47 --- /dev/null +++ b/addons/auth_password_policy/i18n/eo.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/es.po b/addons/auth_password_policy/i18n/es.po new file mode 100644 index 00000000..cd44ecc7 --- /dev/null +++ b/addons/auth_password_policy/i18n/es.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Identificación" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Longitud mínima de contraseña" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"El número mínimo de caracteres que deben de contener las contraseñas, cambia" +" a 0 para deshabilitar." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Las contraseñas deben tener por lo menos %dcaracteres, pero tiene %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Requerido: %s.\n" +"\n" +"Sugerencia: aumenta la longitud, usa varias palabras y usa caracteres que no sean letras para aumentar la seguridad de tu contraseña." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "por lo menos %d clases de caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "por lo menos %d caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "por lo menos %d palabras" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "sin requisitos" diff --git a/addons/auth_password_policy/i18n/es_MX.po b/addons/auth_password_policy/i18n/es_MX.po new file mode 100644 index 00000000..61b8f3f8 --- /dev/null +++ b/addons/auth_password_policy/i18n/es_MX.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Identificación" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Longitud mínima de contraseña" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"El número mínimo de caracteres que deben de contener las contraseñas, cambie" +" a 0 para deshabilitar." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Las contraseñas deben tener por lo menos %dcaracteres, pero tiene %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Requerido: %s.\n" +"\n" +"Sugerencia: aumente la longitud, usa varias palabras y usa caracteres que no sean letras para aumentar la seguridad de tu contraseña." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "por lo menos %d clases de caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "por lo menos %d caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "por lo menos %d palabras" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "sin requisitos" diff --git a/addons/auth_password_policy/i18n/et.po b/addons/auth_password_policy/i18n/et.po new file mode 100644 index 00000000..2b8413e1 --- /dev/null +++ b/addons/auth_password_policy/i18n/et.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Triine Aavik <triine@avalah.ee>, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Arma Gedonsky <armagedonsky@hot.ee>, 2020\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Kasutajad" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/eu.po b/addons/auth_password_policy/i18n/eu.po new file mode 100644 index 00000000..ffb69ffe --- /dev/null +++ b/addons/auth_password_policy/i18n/eu.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Erabiltzaileak" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "gutxienez %d karaktere klase" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "baldintzarik ez" diff --git a/addons/auth_password_policy/i18n/fa.po b/addons/auth_password_policy/i18n/fa.po new file mode 100644 index 00000000..bc9c610f --- /dev/null +++ b/addons/auth_password_policy/i18n/fa.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "شناسه" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "کاربران" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/fi.po b/addons/auth_password_policy/i18n/fi.po new file mode 100644 index 00000000..a3086622 --- /dev/null +++ b/addons/auth_password_policy/i18n/fi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Salasanan minimipituus" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Salasanan merkkien vähimmäismäärä. Aseta 0 jos haluat tämän pois käytöstä." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Salasanassa on oltava ainakin %d merkkiä, saatiin %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Vaaditaan: %s.\n" +"\n" +"Vinkki: kasvata pituutta, käytä useita sanoja ja muita merkkejä kuin kirjaimia parantaaksesi salasanan vahvuutta." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Käyttäjät" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "vähintään %d merkkityyppiä" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "vähintään %d merkkiä" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "vähintään %d sanaa" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "ei vaatimuksia" diff --git a/addons/auth_password_policy/i18n/fr.po b/addons/auth_password_policy/i18n/fr.po new file mode 100644 index 00000000..3a321689 --- /dev/null +++ b/addons/auth_password_policy/i18n/fr.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Lionel COUSTEIX <l.cousteix@outlook.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Priscilla Sanchez <prs@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Priscilla Sanchez <prs@odoo.com>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Longueur minimale du mot de passe" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Nombre minimum de caractères que les mots de passe doivent contenir, défini " +"sur 0 pour le désactiver." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" +"Les mots de passe doivent comporter au moins %d caractères, contient %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Requis: %s.\n" +"\n" +"Astuce: augmentez la longueur, utilisez plusieurs mots et utilisez des caractères autres que des lettres pour augmenter la force de votre mot de passe." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "au moins %d classes de caractères" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "au moins %d caractères" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "au moins %d mots" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "pas d'exigences" diff --git a/addons/auth_password_policy/i18n/gu.po b/addons/auth_password_policy/i18n/gu.po new file mode 100644 index 00000000..6bb7d037 --- /dev/null +++ b/addons/auth_password_policy/i18n/gu.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:48+0000\n" +"PO-Revision-Date: 2018-10-08 06:48+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "વપરાશકર્તાઓ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/he.po b/addons/auth_password_policy/i18n/he.po new file mode 100644 index 00000000..abfce2cb --- /dev/null +++ b/addons/auth_password_policy/i18n/he.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "מזהה" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "משתמשים" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/hi.po b/addons/auth_password_policy/i18n/hi.po new file mode 100644 index 00000000..b307c604 --- /dev/null +++ b/addons/auth_password_policy/i18n/hi.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/hr.po b/addons/auth_password_policy/i18n/hr.po new file mode 100644 index 00000000..6b9dbe83 --- /dev/null +++ b/addons/auth_password_policy/i18n/hr.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Vladimir Olujić <olujic.vladimir@storm.hr>, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimalna duljina lozinke" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimalni broj znakova koje lozinka mora sadržavati, postavite na 0 da " +"onemogućite provjeru." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Lozinke moraju imati najmanje %d znakova, postavljeno %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Zahtijevano: %s.\n" +"\n" +"Savjet: produljite, koristite više riječi i specijalnih znakova kako bi povećali sigurnost lozinke." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "najmanje %d skupina znakova" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "najmanje %d znakova" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "najmanje %d riječi" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "nema zahtjeva" diff --git a/addons/auth_password_policy/i18n/hu.po b/addons/auth_password_policy/i18n/hu.po new file mode 100644 index 00000000..74059ff0 --- /dev/null +++ b/addons/auth_password_policy/i18n/hu.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# krnkris, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Zsolt Godó <zsolttokio@gmail.com>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Azonosító" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimális jelszóhossz" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"A jelszónak minimum ennyi karaktert kell tartalmaznia, állítsa 0-ra a " +"kikapcsoláshoz." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "A jelszónak minimum %d karakternek kell lennie, de ez csak %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "legalább %d karakterosztály" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "legalább %d karakter" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "legalább %d szó" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "nincs követelmény" diff --git a/addons/auth_password_policy/i18n/id.po b/addons/auth_password_policy/i18n/id.po new file mode 100644 index 00000000..15b343ef --- /dev/null +++ b/addons/auth_password_policy/i18n/id.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# pnyet <david@zeromail.us>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: pnyet <david@zeromail.us>, 2020\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Pengguna" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/is.po b/addons/auth_password_policy/i18n/is.po new file mode 100644 index 00000000..0f156621 --- /dev/null +++ b/addons/auth_password_policy/i18n/is.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:48+0000\n" +"PO-Revision-Date: 2018-10-08 07:10+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Notendur" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/it.po b/addons/auth_password_policy/i18n/it.po new file mode 100644 index 00000000..08763ab3 --- /dev/null +++ b/addons/auth_password_policy/i18n/it.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Sergio Zanchetta <primes2h@gmail.com>, 2020 +# Federico Castellano <castellano.federico@outlook.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Federico Castellano <castellano.federico@outlook.com>, 2020\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Lunghezza minima della password" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Numero minimo di caratteri che devono contenere le password, impostare a 0 " +"per disabilitare." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "La password deve avere almeno %d caratteri, ne sono stati usati%d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Obbligatorio: %s.\n" +"\n" +"Suggerimento: per rendere più robusta la password, aumentarne la lunghezza con più parole e usare caratteri diversi dalle lettere." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "almeno %d categorie di caratteri" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "almeno %d caratteri" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "almeno %d parole" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "nessun requisito" diff --git a/addons/auth_password_policy/i18n/ja.po b/addons/auth_password_policy/i18n/ja.po new file mode 100644 index 00000000..2e3ddb5f --- /dev/null +++ b/addons/auth_password_policy/i18n/ja.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "ユーザ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/ka.po b/addons/auth_password_policy/i18n/ka.po new file mode 100644 index 00000000..1e3947a1 --- /dev/null +++ b/addons/auth_password_policy/i18n/ka.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "მომხმარებლები" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/km.po b/addons/auth_password_policy/i18n/km.po new file mode 100644 index 00000000..7a0b8e30 --- /dev/null +++ b/addons/auth_password_policy/i18n/km.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "កំណត់រចនាសម្ព័ន្ធ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "ប្រវែងលេខសម្ងាត់អប្បបរមា" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "លេខអប្បបរមានៃពាក្យសម្ងាត់នៃតួអក្សរត្រូវតែមានកំណត់ 0 ដើម្បីបិទ។" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "ត្រូវតែមានលេខសំងាត់យ៉ាងហោចណាស់់%dព្យាង្គទទួលបាន%d" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"សំណូមពរ%sព័ត៌មានជំនួយ: " +"បង្កើនប្រវែងប្រើពាក្យច្រើននិងប្រើតួអក្សរដែលមិនមែនជាអក្សរដើម្បីបង្កើនកម្លាំងពាក្យសម្ងាត់របស់អ្នក។" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "អ្នកប្រើ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "យ៉ាងហោចណាស់%dថ្នាក់ព្យាង្គ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "យ៉ាងហោចណាស់%dព្យាង្គ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "យ៉ាងហោចណាស់%dពាក្យ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "មិនមានការទាមទារ" diff --git a/addons/auth_password_policy/i18n/ko.po b/addons/auth_password_policy/i18n/ko.po new file mode 100644 index 00000000..8096bf58 --- /dev/null +++ b/addons/auth_password_policy/i18n/ko.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "최소 비밀번호 길이" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "암호에 포함되어야 하는 최소 문자 수. 사용하지 않으려면 0으로 설정하십시오." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "비밀번호는 최소한 %d 글자 이상이어야 합니다. 현재 비밀번호는 %d 글자입니다." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"필수 항목 : %s.\n" +"\n" +"힌트: 길이를 늘리고, 여러 단어를 사용하며, 특수문자를 사용하여 암호의 강도를 높입니다." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "사용자" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "적어도 %d 문자 클래스" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "적어도 %d 문자" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "적어도 %d 단어" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "요구 사항 없음" diff --git a/addons/auth_password_policy/i18n/lb.po b/addons/auth_password_policy/i18n/lb.po new file mode 100644 index 00000000..ce7e8fdb --- /dev/null +++ b/addons/auth_password_policy/i18n/lb.po @@ -0,0 +1,81 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/lt.po b/addons/auth_password_policy/i18n/lt.po new file mode 100644 index 00000000..9b8084f4 --- /dev/null +++ b/addons/auth_password_policy/i18n/lt.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimalus slaptažodžio ilgis" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimalus ženklų skaičius, kurį turi turėti slaptažodis. Nustatykite \"0\", " +"jei norite netaikyti." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Slaptažodžio ženklų skaičius turi būti bent %d, dabar yra %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Vartotojai" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/lv.po b/addons/auth_password_policy/i18n/lv.po new file mode 100644 index 00000000..3d5af74f --- /dev/null +++ b/addons/auth_password_policy/i18n/lv.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Konstantins Zabogonskis <inculin4ik@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas iestatījumi" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimālais Paroles Garums" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Lietotāji" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "nav prasību" diff --git a/addons/auth_password_policy/i18n/mn.po b/addons/auth_password_policy/i18n/mn.po new file mode 100644 index 00000000..40f8fd77 --- /dev/null +++ b/addons/auth_password_policy/i18n/mn.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Нууц үгийн уртын доод хэмжээ" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Нууц үг хамгийн багадаа хичнээн тэмдэгт агуулах ёстойг заана. 0 бол " +"тэмдэгтийн тоо заахгүй." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" +"Нууц үг хамгийн багадаа %dтэмдэгт агуулах ёстой. Харин та %dтэмдэгт оруулсан" +" байна." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Заавал шаардлагатай: %s.\n" +"\n" +"Зөвлөмж: уртыг нэмэгдүүл, олон үг болон үсэг биш тэмдэгтүүд ашиглан нууц үгээ илүү хүчтэй, тайлахад амаргүй болгоно уу." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "дор хаяж %d тэмдэгт ашигла" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "хамгийн багадаа %d тэмдэгт" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "хамгийн багадаа %d үг" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "Шаардлагууд хангасангүй." diff --git a/addons/auth_password_policy/i18n/nb.po b/addons/auth_password_policy/i18n/nb.po new file mode 100644 index 00000000..35ea7f64 --- /dev/null +++ b/addons/auth_password_policy/i18n/nb.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minste passordlengde" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "Minste antall tegn passord må bestå av. Sett til 0 for ingen grense." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Passord må ha minst %d tegn. Mottok %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Påkrevd: %s.\n" +"\n" +"Hint: øk lengden, bruk flere ord og bruk tegn som ikke er bokstaver, for å øke styrken på passordet." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Brukere" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "minst %d tegnklasser" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "minst %d tegn" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "minst %d ord" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "ingen krav" diff --git a/addons/auth_password_policy/i18n/nl.po b/addons/auth_password_policy/i18n/nl.po new file mode 100644 index 00000000..5dbc5714 --- /dev/null +++ b/addons/auth_password_policy/i18n/nl.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Cas Vissers <casvissers@brahoo.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Cas Vissers <casvissers@brahoo.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimale wachtwoordlengte" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimaal aantal tekens dat wachtwoorden moeten bevatten, stel in op 0 om uit" +" te schakelen." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Wachtwoord moet tenminste %d karakters bevatten, bevat %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Verplicht: %s.\n" +"\n" +"Tip: verhoog de lengte, gebruik meerdere woorden en gebruik niet-lettertekens om de sterkte van je wachtwoord te vergroten." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "tenminste %d karakter klassen" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "tenminste %d karakters" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "tenminste %d woorden" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "geen verplichtingen" diff --git a/addons/auth_password_policy/i18n/pl.po b/addons/auth_password_policy/i18n/pl.po new file mode 100644 index 00000000..552b4b9c --- /dev/null +++ b/addons/auth_password_policy/i18n/pl.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Maksym <ms@myodoo.pl>, 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimalna długość hasła" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimalna liczba znaków jaką musi posiadać hasło, ustaw 0 aby wyłączyć" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Hasła muszą posiadać przynajmniej %dznaków, obecne ma %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Wymagane: %s.\n" +"\n" +"Podpowiedź: zwiększenie długości, użycie wielu słów i używanie znaków innych niż litery zwiększy bezpieczeństwo." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Użytkownicy" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "przynajmniej %dtypów znaków" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "przynajmniej %dznaków" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "przynajmniej %dsłów" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "brak wymagań" diff --git a/addons/auth_password_policy/i18n/pt.po b/addons/auth_password_policy/i18n/pt.po new file mode 100644 index 00000000..a6226752 --- /dev/null +++ b/addons/auth_password_policy/i18n/pt.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Tamanho minimo da palavra-passe" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "a palavra-passe deve conter pelo menos %d caracteres, tem %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "Pelo menos%dtipos de caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "pelo menos %d caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "pelo menos %d palavras" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "sem requisitos " diff --git a/addons/auth_password_policy/i18n/pt_BR.po b/addons/auth_password_policy/i18n/pt_BR.po new file mode 100644 index 00000000..a7b4ed44 --- /dev/null +++ b/addons/auth_password_policy/i18n/pt_BR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Silmar <pinheirosilmar@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Tamanho Mínimo de Senha" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Número mínimo de caracteres que senhas devem conter. 0 para desabilitar" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Senhas devem conter ao menos %d você escreveu %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Requerido: %s.\n" +"\n" +"Diga: Aumente o tamanho, use múltiplas palavras e use caracteres não alfabéticos para aumentar a força de sua senha." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "ao menos %d classe de caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "ao menos %d caracteres" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "ao menos %d palavras" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "sem requerimentos" diff --git a/addons/auth_password_policy/i18n/ro.po b/addons/auth_password_policy/i18n/ro.po new file mode 100644 index 00000000..f3dd8b22 --- /dev/null +++ b/addons/auth_password_policy/i18n/ro.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Lungime Minimă Parolă" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Numărul minim de caractere trebuie să conțină parolele, setați pe 0 pentru a" +" dezactiva." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Parolele trebuie să aibă cel puțin %d caractere, are %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Necesar: %s.\n" +"\n" +"Sugestie: măriți lungimea, utilizați mai multe cuvinte și utilizați caractere care nu sunt litere pentru a crește securitatea parolei." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "cel puțin %d clase de caractere" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "cel puțin %d caractere" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "cel puțin %d cuvinte" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "fără cerințe" diff --git a/addons/auth_password_policy/i18n/ru.po b/addons/auth_password_policy/i18n/ru.po new file mode 100644 index 00000000..b547394c --- /dev/null +++ b/addons/auth_password_policy/i18n/ru.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Denis Baranov <baranov@itlibertas.com>, 2020 +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "Идентификатор" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Минимальная длина пароля" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Минимальное количество символов, которые пароль должен содержать, установите" +" на 0, чтобы выключить." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Пароль должен иметь по крайней мере %d символов, полученные %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Необходимо:%s . Подсказка: увеличение длины, использование нескольких слов и" +" использование символов без символов для увеличения силы пароля." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Пользователи" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "по крайней мере %d классов символов" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "по крайней мере %d символов" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "по крайней мере %d слов" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "нет требований" diff --git a/addons/auth_password_policy/i18n/si.po b/addons/auth_password_policy/i18n/si.po new file mode 100644 index 00000000..f44b72b3 --- /dev/null +++ b/addons/auth_password_policy/i18n/si.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/sk.po b/addons/auth_password_policy/i18n/sk.po new file mode 100644 index 00000000..a8a56bba --- /dev/null +++ b/addons/auth_password_policy/i18n/sk.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimálna dĺžka hesla" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Minimálny počet znakov ktoré musí heslo obsahovať, pre zakázanie nastav 0." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Heslo musí mať aspoň %d znakov, má %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Vyžadované: %s.\n" +"\n" +"Pomôcka: pre zvýšenie bezpečnosti hesla zväčšite jeho dĺžku, použite viac slov a špeciálne znaky." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Užívatelia" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "najmenej %d skupín znakov" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "najmenej %d znakov" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "najmenej %d slov" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "nepožadované" diff --git a/addons/auth_password_policy/i18n/sl.po b/addons/auth_password_policy/i18n/sl.po new file mode 100644 index 00000000..7875618b --- /dev/null +++ b/addons/auth_password_policy/i18n/sl.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Minimalna dolžina gesla" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/sr.po b/addons/auth_password_policy/i18n/sr.po new file mode 100644 index 00000000..38a3e206 --- /dev/null +++ b/addons/auth_password_policy/i18n/sr.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-08 06:48+0000\n" +"PO-Revision-Date: 2018-10-08 06:48+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:30 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:123 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:28 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:22 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:25 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:125 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/sv.po b/addons/auth_password_policy/i18n/sv.po new file mode 100644 index 00000000..0ec9cee1 --- /dev/null +++ b/addons/auth_password_policy/i18n/sv.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/th.po b/addons/auth_password_policy/i18n/th.po new file mode 100644 index 00000000..e58e9718 --- /dev/null +++ b/addons/auth_password_policy/i18n/th.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Somchart Jabsung <jabsung.s@gmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "การตั้งค่า" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "รหัส" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "ผู้ใช้งาน" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/tr.po b/addons/auth_password_policy/i18n/tr.po new file mode 100644 index 00000000..4465ef54 --- /dev/null +++ b/addons/auth_password_policy/i18n/tr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Ediz Duman <neps1192@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "En az Parola Uzunluğu" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Şifrenin içermesi gereken minimum karakter sayısı, devre dışı bırakmak için " +"0 olarak ayarlanmalıdır." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Şifre en az %d karaktere sahip olmalı, şuan bu kadar var%d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Gereksinim: %s.\n" +"\n" +"İpucu: Şifrenin güvenliğini artırmak için uzunluğu artırın, birden fazla kelime kullanın ve harf olmayan karakterler kullanın." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "En az %d karakter sınıfı" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "en az %d karakter" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "en az %d kelime" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "ihtiyaç yok" diff --git a/addons/auth_password_policy/i18n/uk.po b/addons/auth_password_policy/i18n/uk.po new file mode 100644 index 00000000..5065af6c --- /dev/null +++ b/addons/auth_password_policy/i18n/uk.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Мінімальна довжина пароля" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Мінімальну кількість символів, які пароль повинен містити, встановіть на 0, " +"щоби вимкнути." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Пароль повинен мати принаймні %d символів, здобуті %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Необхідно: %s.\n" +"\n" +"Підказка: збільшення довжини, використання кількох слів та використання символів без символів для покращення пароля." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Користувачі" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "принаймні %d класів символів" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "принаймні %d символів" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "принаймні %d слів" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "немає вимог" diff --git a/addons/auth_password_policy/i18n/ur.po b/addons/auth_password_policy/i18n/ur.po new file mode 100644 index 00000000..0a18e814 --- /dev/null +++ b/addons/auth_password_policy/i18n/ur.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "" diff --git a/addons/auth_password_policy/i18n/vi.po b/addons/auth_password_policy/i18n/vi.po new file mode 100644 index 00000000..ff3911ca --- /dev/null +++ b/addons/auth_password_policy/i18n/vi.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Duy BQ <duybq86@gmail.com>, 2020\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "Độ dài mật khẩu tối thiểu" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "" +"Số lượng ký tự tối thiểu phải chứa trong mật khẩu, đặt là 0 để không kiểm " +"tra cái này." + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "Mật khẩu phải có ít nhất %d ký tự, có %d." + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"Bắt buộc: %s.\n" +"\n" +"Gợi ý: tăng chiều dài, sử dụng nhiều từ và sử dụng các ký tự đặc biệt để tăng tính bảo mật cho mật khẩu của bạn." + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "Người dùng" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "ít nhất %d các lớp ký tự" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "ít nhất %d ký tự" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "ít nhất %d từ" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "không có yêu cầu" diff --git a/addons/auth_password_policy/i18n/zh_CN.po b/addons/auth_password_policy/i18n/zh_CN.po new file mode 100644 index 00000000..46dca52b --- /dev/null +++ b/addons/auth_password_policy/i18n/zh_CN.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# Ryan Zhang <so_happy_boy@hotmail.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr " 最小密码长度" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "密码至少包含字符数,设定0为禁用此设置。" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "密码需至少%d个字符,现有%d个字符。" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"要求:%s\n" +"\n" +"提示:增加长度,使用多个文字以及非书写字符去增强你的密码强度。" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "用户" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "至少%d个字符类别" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "至少%d个字符" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "至少%d个字" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "无要求" diff --git a/addons/auth_password_policy/i18n/zh_TW.po b/addons/auth_password_policy/i18n/zh_TW.po new file mode 100644 index 00000000..39ea3ebe --- /dev/null +++ b/addons/auth_password_policy/i18n/zh_TW.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_password_policy +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:10+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__id +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:auth_password_policy.field_res_users____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: auth_password_policy +#: model:ir.model.fields,field_description:auth_password_policy.field_res_config_settings__minlength +msgid "Minimum Password Length" +msgstr "最小密碼長度" + +#. module: auth_password_policy +#: model:ir.model.fields,help:auth_password_policy.field_res_config_settings__minlength +msgid "" +"Minimum number of characters passwords must contain, set to 0 to disable." +msgstr "密碼必須包含的最小字元數,設置為 0 不啟用此功能。" + +#. module: auth_password_policy +#: code:addons/auth_password_policy/models/res_users.py:0 +#, python-format +msgid "Passwords must have at least %d characters, got %d." +msgstr "密碼必須至少具有 %d 字元,目前為 %d。" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "" +"Required: %s.\n" +"\n" +"Hint: increase length, use multiple words and use non-letter characters to increase your password's strength." +msgstr "" +"必需:%s。\n" +"\n" +"提示:增加長度,使用多個單詞,並使用符號來增加密碼的強度。" + +#. module: auth_password_policy +#: model:ir.model,name:auth_password_policy.model_res_users +msgid "Users" +msgstr "使用者" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d character classes" +msgstr "最少 %d 字元類型" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d characters" +msgstr "最少 %d 字元" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "at least %d words" +msgstr "最少 %d 字" + +#. module: auth_password_policy +#. openerp-web +#: code:addons/auth_password_policy/static/src/js/password_gauge.js:0 +#, python-format +msgid "no requirements" +msgstr "無密碼複雜度要求" diff --git a/addons/auth_password_policy/models/__init__.py b/addons/auth_password_policy/models/__init__.py new file mode 100644 index 00000000..ef6d5092 --- /dev/null +++ b/addons/auth_password_policy/models/__init__.py @@ -0,0 +1,2 @@ +from . import res_config_settings +from . import res_users diff --git a/addons/auth_password_policy/models/res_config_settings.py b/addons/auth_password_policy/models/res_config_settings.py new file mode 100644 index 00000000..bb1f52a2 --- /dev/null +++ b/addons/auth_password_policy/models/res_config_settings.py @@ -0,0 +1,27 @@ +from odoo import api, fields, models, _ + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + minlength = fields.Integer("Minimum Password Length", help="Minimum number of characters passwords must contain, set to 0 to disable.") + + @api.model + def get_values(self): + res = super(ResConfigSettings, self).get_values() + + res['minlength'] = int(self.env['ir.config_parameter'].sudo().get_param('auth_password_policy.minlength', default=0)) + + return res + + @api.model + def set_values(self): + self.env['ir.config_parameter'].sudo().set_param('auth_password_policy.minlength', self.minlength) + + super(ResConfigSettings, self).set_values() + + @api.onchange('minlength') + def _on_change_mins(self): + """ Password lower bounds must be naturals + """ + self.minlength = max(0, self.minlength or 0) diff --git a/addons/auth_password_policy/models/res_users.py b/addons/auth_password_policy/models/res_users.py new file mode 100644 index 00000000..b938acd5 --- /dev/null +++ b/addons/auth_password_policy/models/res_users.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +from odoo import api, models, _ +from odoo.exceptions import UserError + + +class ResUsers(models.Model): + _inherit = 'res.users' + + @api.model + def get_password_policy(self): + params = self.env['ir.config_parameter'].sudo() + return { + 'minlength': int(params.get_param('auth_password_policy.minlength', default=0)), + } + + def _set_password(self): + self._check_password_policy(self.mapped('password')) + + super(ResUsers, self)._set_password() + + def _check_password_policy(self, passwords): + failures = [] + params = self.env['ir.config_parameter'].sudo() + + minlength = int(params.get_param('auth_password_policy.minlength', default=0)) + for password in passwords: + if not password: + continue + if len(password) < minlength: + failures.append(_(u"Passwords must have at least %d characters, got %d.") % (minlength, len(password))) + + if failures: + raise UserError(u'\n\n '.join(failures)) diff --git a/addons/auth_password_policy/static/src/css/password_field.css b/addons/auth_password_policy/static/src/css/password_field.css new file mode 100644 index 00000000..a819c39b --- /dev/null +++ b/addons/auth_password_policy/static/src/css/password_field.css @@ -0,0 +1,16 @@ +meter.o_password_meter { + position: absolute; + height: 15px; + bottom: calc(50% - 7px); + right: 5px; +} + +/* meter is positioned absolutely & td has a 45 right padding */ +[name=change_password_form] .o_form_view .o_group.o_inner_group > tbody > tr > td { + position: relative; +} +[name=change_password_form] .o_form_view .o_group.o_inner_group > tbody > tr > td > meter.o_password_meter { + right: 50px; + /* also input has a 5px bottom margin... */ + bottom: calc(50% - 7px + 5px) +} diff --git a/addons/auth_password_policy/static/src/js/change_password.js b/addons/auth_password_policy/static/src/js/change_password.js new file mode 100644 index 00000000..0a40f4bd --- /dev/null +++ b/addons/auth_password_policy/static/src/js/change_password.js @@ -0,0 +1,33 @@ +odoo.define('auth_password_policy.ChangePassword', function (require) { +"use strict"; +var ChangePassword = require('web.ChangePassword'); +var policy = require('auth_password_policy'); +var Meter = require('auth_password_policy.Meter'); + +ChangePassword.include({ + events: { + 'input input[name=new_password]': function (e) { + this._meter.update(e.target.value); + } + }, + willStart: function () { + var _this = this; + var getPolicy = this._rpc({ + model: 'res.users', + method: 'get_password_policy' + }).then(function (p) { + _this._meter = new Meter(_this, new policy.Policy(p), policy.recommendations); + }); + return Promise.all([ + this._super.apply(this, arguments), + getPolicy + ]); + }, + start: function () { + return Promise.all([ + this._meter.insertAfter(this.$('input[name=new_password]')), + this._super() + ]); + } +}) +}); diff --git a/addons/auth_password_policy/static/src/js/password_field.js b/addons/auth_password_policy/static/src/js/password_field.js new file mode 100644 index 00000000..f0aa2c44 --- /dev/null +++ b/addons/auth_password_policy/static/src/js/password_field.js @@ -0,0 +1,87 @@ +/** + * Defines a proper password field (rather than just an InputField option) to + * provide a "password strength" meter based on the database's current + * policy & the 2word16 password policy recommended by Shay (2016) "Designing + * Password Policies for Strength and Usability". + */ +odoo.define('auth_password_policy.PasswordField', function (require) { +"use strict"; +var fields = require('web.basic_fields'); +var registry = require('web.field_registry'); +var policy = require('auth_password_policy'); +var Meter = require('auth_password_policy.Meter'); +var _formatValue = require('web.AbstractField').prototype._formatValue; + +var PasswordField = fields.InputField.extend({ + className: 'o_field_password', + + init: function () { + this._super.apply(this, arguments); + this.nodeOptions.isPassword = true; + this._meter = new Meter(this, new policy.Policy({}), policy.recommendations); + }, + willStart: function () { + var _this = this; + var getPolicy = this._rpc({ + model: 'res.users', + method: 'get_password_policy', + }).then(function (p) { + _this._meter = new Meter(_this, new policy.Policy(p), policy.recommendations); + }); + return Promise.all([ + this._super.apply(this, arguments), + getPolicy + ]); + }, + /** + * Add a <meter> next to the input (TODO: move to template?) + * + * @override + * @private + */ + _renderEdit: function () { + var _this = this; + var meter = this._meter; + return Promise.resolve(this._super.apply(this, arguments)).then(function () { + return meter._widgetRenderAndInsert(function (t) { + // insertAfter doesn't work and appendTo means the meter is + // ignored (as this.$el is an input[type=password]) + _this.$el = t.add(meter.$el); + }, _this.$el); + }).then(function () { + // initial meter update when re-editing + meter.update(_this._getValue()); + }); + }, + /** + * disable formatting for this widget, or the value gets replaced by + * **** before being written back into the widget when switching from + * readonly to editable (so input -> readonly -> input more, the 1st input + * is all replaced by *s not just in display but in actual storage) + * + * @override + * @private + */ + _formatValue: function (value) { return value || ''; }, + /** + * @override + * @private + */ + _renderReadonly: function () { + this.$el.text(_formatValue.call(this, this.value)); + }, + /** + * Update meter value on the fly on value change + * + * @override + * @private + */ + _onInput: function () { + this._super(); + this._meter.update(this._getValue()); + } +}); + +registry.add("password_meter", PasswordField); +return PasswordField; +}); diff --git a/addons/auth_password_policy/static/src/js/password_gauge.js b/addons/auth_password_policy/static/src/js/password_gauge.js new file mode 100644 index 00000000..b655463b --- /dev/null +++ b/addons/auth_password_policy/static/src/js/password_gauge.js @@ -0,0 +1,140 @@ +odoo.define('auth_password_policy', function (require) { +"use strict"; +var core = require('web.core'); +var _t = core._t; + +var Policy = core.Class.extend({ + /** + * + * @param {Object} info + * @param {Number} [info.minlength=0] + * @param {Number} [info.minwords=0] + * @param {Number} [info.minclasses=0] + */ + init: function (info) { + this._minlength = info.minlength || 1; + this._minwords = info.minwords || 1; + this._minclasses = info.minclasses || 1; + }, + toString: function () { + var msgs = []; + if (this._minlength > 1) { + msgs.push(_.str.sprintf(_t("at least %d characters"), this._minlength)); + } + if (this._minwords > 1) { + msgs.push(_.str.sprintf(_t("at least %d words"), this._minwords)); + } + if (this._minclasses > 1) { + msgs.push(_.str.sprintf(_t("at least %d character classes"), this._minclasses)); + } + return msgs.join(', ') + }, + score: function (password) { + var lengthscore = Math.min( + password.length / this._minlength, + 1.0); + // we want the number of "words". Splitting on no-words doesn't work + // because JS will add an empty string when matching a leading or + // trailing pattern e.g. " foo ".split(/\W+/) will return ['', 'foo', ''] + // by splitting on the words, we should always get wordscount + 1 + var wordscore = Math.min( + // \w includes _ which we don't want, so combine \W and _ then + // invert it to know what "word" is + // + // Sadly JS is absolute garbage, so this splitting is basically + // solely ascii-based unless we want to include cset + // (http://inimino.org/~inimino/blog/javascript_cset) which can + // generate non-trivial character-class-set-based regex patterns + // for us. We could generate the regex statically but they're huge + // and gnarly as hell. + (password.split(/[^\W_]+/).length - 1) / this._minwords, + 1.0 + ); + // See above for issues pertaining to character classification: + // we'll classify using the ascii range because that's basically our + // only option + var classes = + ((/[a-z]/.test(password)) ? 1 : 0) + + ((/[A-Z]/.test(password)) ? 1 : 0) + + ((/\d/.test(password)) ? 1 : 0) + + ((/[^A-Za-z\d]/.test(password)) ? 1 : 0); + var classesscore = Math.min(classes / this._minclasses, 1.0); + + return lengthscore * wordscore * classesscore; + }, +}); + +return { + /** + * Computes the password's score, should be roughly continuous, under 0.5 + * if the requirements don't pass and at 1 if the recommendations are + * exceeded + */ + computeScore: function (password, requirements, recommendations) { + var req = requirements.score(password); + var rec = recommendations.score(password); + return Math.pow(req, 4) * (0.5 + Math.pow(rec, 2) / 2); + }, + Policy: Policy, + // Recommendations from Shay (2016): + // Our research has shown that there are other policies that are more + // usable and more secure. We found three policies (2class12, 3class12, + // and 2word16) that we can directly recommend over comp8 + // + // Since 2class12 is a superset of 3class12 and 2word16, either pick it or + // pick the other two (and get the highest score of the two). We're + // picking the other two. + recommendations: { + score: function (password) { + return _.max(_.invoke(this.policies, 'score', password)); + }, + policies: [ + new Policy({minlength: 16, minwords: 2}), + new Policy({minlength: 12, minclasses: 3}) + ] + } +} +}); + +odoo.define('auth_password_policy.Meter', function (require) { +"use strict"; +var core = require('web.core'); +var policy = require('auth_password_policy'); +var Widget = require('web.Widget'); +var _t = core._t; + +var PasswordPolicyMeter = Widget.extend({ + tagName: 'meter', + className: 'o_password_meter', + attributes: { + min: 0, + low: 0.5, + high: 0.99, + max: 1, + value: 0, + optimum: 1, + }, + init: function (parent, required, recommended) { + this._super(parent); + this._required = required; + this._recommended = recommended; + }, + start: function () { + var helpMessage = _t("Required: %s.\n\nHint: increase length, use multiple words and use non-letter characters to increase your password's strength."); + this.el.setAttribute( + 'title', _.str.sprintf(helpMessage, String(this._required) || _t("no requirements"))); + return this._super().then(function () { + }); + }, + /** + * Updates the meter with the information of the new password: computes + * the (required x recommended) score and sets the widget's value as that + * + * @param {String} password + */ + update: function (password) { + this.el.value = policy.computeScore(password, this._required, this._recommended); + } +}); +return PasswordPolicyMeter; +}); diff --git a/addons/auth_password_policy/views/assets.xml b/addons/auth_password_policy/views/assets.xml new file mode 100644 index 00000000..67bcc719 --- /dev/null +++ b/addons/auth_password_policy/views/assets.xml @@ -0,0 +1,16 @@ +<odoo> + <template id="assets_backend" inherit_id="web.assets_backend" + name="Password Policy Backend Assets"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/auth_password_policy/static/src/js/password_field.js"></script> + <script type="text/javascript" src="/auth_password_policy/static/src/js/change_password.js"></script> + </xpath> + </template> + <template id="assets_common" inherit_id="web.assets_common" + name="Password Policy Common Assets"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/auth_password_policy/static/src/js/password_gauge.js"></script> + <link rel="stylesheet" type="text/css" href="/auth_password_policy/static/src/css/password_field.css"/> + </xpath> + </template> +</odoo> diff --git a/addons/auth_password_policy/views/res_config_settings_views.xml b/addons/auth_password_policy/views/res_config_settings_views.xml new file mode 100644 index 00000000..ae974074 --- /dev/null +++ b/addons/auth_password_policy/views/res_config_settings_views.xml @@ -0,0 +1,19 @@ +<odoo> + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.form.auth_password_policy</field> + <field name="model">res.config.settings</field> + <field name="inherit_id" ref="base_setup.res_config_settings_view_form"/> + <field name="arch" type="xml"> + <!-- add before the Access Rights section --> + <xpath expr="//div[@id='allow_import']" position="before"> + <div class="col-12 col-lg-6 o_setting_box"> + <div class="o_setting_left_pane"/> + <div class="o_setting_right_pane"> + <label for="minlength"/> + <field name="minlength"/> + </div> + </div> + </xpath> + </field> + </record> +</odoo> diff --git a/addons/auth_password_policy/views/res_users.xml b/addons/auth_password_policy/views/res_users.xml new file mode 100644 index 00000000..e0a2ffc3 --- /dev/null +++ b/addons/auth_password_policy/views/res_users.xml @@ -0,0 +1,12 @@ +<odoo> + <record id="change_password_multi" model="ir.ui.view"> + <field name="name">Enable password meter on multi passwords wizard</field> + <field name="inherit_id" ref="base.change_password_wizard_user_tree_view"/> + <field name="model">change.password.user</field> + <field name="arch" type="xml"> + <xpath expr="//field[@name='new_passwd']" position="attributes"> + <attribute name="widget">password_meter</attribute> + </xpath> + </field> + </record> +</odoo> |
