diff --git a/requirements.txt b/requirements.txt index 1fa3781a8b..30a3b63d62 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,3 +5,4 @@ lxml pyjwt pysaml2 python-jose +python-ldap diff --git a/users_ldap_mail/README.rst b/users_ldap_mail/README.rst index fa379371a2..c67c91072e 100644 --- a/users_ldap_mail/README.rst +++ b/users_ldap_mail/README.rst @@ -1,7 +1,3 @@ -.. image:: https://odoo-community.org/readme-banner-image - :target: https://odoo-community.org/get-involved?utm_source=readme - :alt: Odoo Community Association - ===================================== LDAP mapping for user name and e-mail ===================================== @@ -17,7 +13,7 @@ LDAP mapping for user name and e-mail .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github diff --git a/users_ldap_mail/__manifest__.py b/users_ldap_mail/__manifest__.py index acd8ba2bd8..064a8b6444 100644 --- a/users_ldap_mail/__manifest__.py +++ b/users_ldap_mail/__manifest__.py @@ -4,7 +4,7 @@ { "name": "LDAP mapping for user name and e-mail", - "version": "18.0.1.0.0", + "version": "18.0.1.0.1", "depends": ["auth_ldap"], "author": "Daniel Reis," "Odoo Community Association (OCA)", "maintainers": ["joao-p-marques"], diff --git a/users_ldap_mail/models/users_ldap_model.py b/users_ldap_mail/models/users_ldap_model.py index 36ef285276..02bbed0d14 100644 --- a/users_ldap_mail/models/users_ldap_model.py +++ b/users_ldap_mail/models/users_ldap_model.py @@ -3,7 +3,7 @@ import logging -from odoo import fields, models, tools +from odoo import fields, models _logger = logging.getLogger(__name__) @@ -42,7 +42,7 @@ def _map_ldap_attributes(self, conf, login, ldap_entry): for value_key, conf_name in mapping: try: if conf[conf_name]: - values[value_key] = tools.ustr(ldap_entry[1][conf[conf_name]][0]) + values[value_key] = ldap_entry[1][conf[conf_name]][0] except KeyError: _logger.warning( f'No LDAP attribute "{conf.get(conf_name)}" found for login ' diff --git a/users_ldap_mail/static/description/index.html b/users_ldap_mail/static/description/index.html index fe40e67146..e47c611517 100644 --- a/users_ldap_mail/static/description/index.html +++ b/users_ldap_mail/static/description/index.html @@ -3,16 +3,15 @@ -README.rst +LDAP mapping for user name and e-mail -
+
+

LDAP mapping for user name and e-mail

- - -Odoo Community Association - -
-

LDAP mapping for user name and e-mail

-

Beta License: AGPL-3 OCA/server-auth Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/server-auth Translate me on Weblate Try me on Runboat

This module extends the functionality of the auth_ldap module to support mail from LDAP and to allow you to get an e-mail address from LDAP accounts to Odoo users.

@@ -393,7 +387,7 @@

LDAP mapping for user name and e-mail

-

Usage

+

Usage

To use this module, you need to:

  1. Open Odoo in your browser
  2. @@ -408,14 +402,14 @@

    Usage

-

Bug Tracker

+

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -423,15 +417,15 @@

Bug Tracker

Do not contact contributors directly about support or help with technical issues.

-

Credits

+

Credits

-

Authors

+

Authors

  • Daniel Reis
-

Maintainers

+

Maintainers

This module is maintained by the OCA.

- -Odoo Community Association - +Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

@@ -457,6 +449,5 @@

Maintainers

-
diff --git a/users_ldap_populate/README.rst b/users_ldap_populate/README.rst new file mode 100644 index 0000000000..1bc6af1a86 --- /dev/null +++ b/users_ldap_populate/README.rst @@ -0,0 +1,108 @@ +============= +LDAP Populate +============= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:4eb3cab1122e35773a183c1ec5450f73de46c048210cddf536bc7aa0e138cf42 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github + :target: https://github.com/OCA/server-auth/tree/18.0/users_ldap_populate + :alt: OCA/server-auth +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-auth-18-0/server-auth-18-0-users_ldap_populate + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/server-auth&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the functionality of auth_ldap by adding +functionality so that users can be populated from a LDAP server. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this module, you need to: + +1. Go to 'Settings' -> 'General Settings' +2. In the LDAP category click on or add a LDAP configuration +3. In the pop-up enter all the LDAP settings +4. Click the populate button +5. A new pop-up will notify you of how many users are added + +Known issues / Roadmap +====================== + +- Improve test coverage and port its LDAP Patch method to a module where + they can be imported and reutilized on other tests. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Therp BV + +Contributors +------------ + +- Therp BV +- `Tecnativa `__: + + - Alexandre Díaz + - João Marques + - Carlos Roca + - Carolina Fernandez + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-joao-p-marques| image:: https://github.com/joao-p-marques.png?size=40px + :target: https://github.com/joao-p-marques + :alt: joao-p-marques + +Current `maintainer `__: + +|maintainer-joao-p-marques| + +This module is part of the `OCA/server-auth `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/users_ldap_populate/__init__.py b/users_ldap_populate/__init__.py new file mode 100644 index 0000000000..a723c78651 --- /dev/null +++ b/users_ldap_populate/__init__.py @@ -0,0 +1,5 @@ +# Copyright 2012 Therp BV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html). + +from . import models +from . import wizards diff --git a/users_ldap_populate/__manifest__.py b/users_ldap_populate/__manifest__.py new file mode 100644 index 0000000000..fc47082bee --- /dev/null +++ b/users_ldap_populate/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2012-2018 Therp BV . +# Copyright 2021 Tecnativa - João Marques +# Copyright 2023 Tecnativa - Carolina Fernandez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html). + +{ + "name": "LDAP Populate", + "version": "18.0.1.0.1", + "author": "Therp BV, Odoo Community Association (OCA)", + "maintainers": ["joao-p-marques"], + "website": "https://github.com/OCA/server-auth", + "license": "AGPL-3", + "category": "Tools", + "depends": ["auth_ldap"], + "external_dependencies": {"python": ["python-ldap"]}, + "data": [ + "security/ir.model.access.csv", + "wizards/populate_wizard.xml", + "views/users_ldap.xml", + ], + "installable": True, +} diff --git a/users_ldap_populate/i18n/am.po b/users_ldap_populate/i18n/am.po new file mode 100644 index 0000000000..7e6ed246e0 --- /dev/null +++ b/users_ldap_populate/i18n/am.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-09-09 12:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/" +"language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/ar.po b/users_ldap_populate/i18n/ar.po new file mode 100644 index 0000000000..dc584f1811 --- /dev/null +++ b/users_ldap_populate/i18n/ar.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "المعرف" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "الاسم" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "آخر تعديل في" diff --git a/users_ldap_populate/i18n/bg.po b/users_ldap_populate/i18n/bg.po new file mode 100644 index 0000000000..c65f09b4a5 --- /dev/null +++ b/users_ldap_populate/i18n/bg.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Име" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Последно обновено на" diff --git a/users_ldap_populate/i18n/bs.po b/users_ldap_populate/i18n/bs.po new file mode 100644 index 0000000000..5a3cafa65f --- /dev/null +++ b/users_ldap_populate/i18n/bs.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Ime" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje mijenjano" diff --git a/users_ldap_populate/i18n/ca.po b/users_ldap_populate/i18n/ca.po new file mode 100644 index 0000000000..c5768db5f8 --- /dev/null +++ b/users_ldap_populate/i18n/ca.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-22 00:55+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nom" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Darrera modificació el" diff --git a/users_ldap_populate/i18n/cs.po b/users_ldap_populate/i18n/cs.po new file mode 100644 index 0000000000..86792f8bed --- /dev/null +++ b/users_ldap_populate/i18n/cs.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Název" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Naposled upraveno" diff --git a/users_ldap_populate/i18n/da.po b/users_ldap_populate/i18n/da.po new file mode 100644 index 0000000000..ebb38c3dc4 --- /dev/null +++ b/users_ldap_populate/i18n/da.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Id" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Navn" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sidst ændret den" diff --git a/users_ldap_populate/i18n/de.po b/users_ldap_populate/i18n/de.po new file mode 100644 index 0000000000..702b84eaa8 --- /dev/null +++ b/users_ldap_populate/i18n/de.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Füge 'Einpflegen'-Button zur ldap-Sicht hinzu" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "LDAP-Konfiguration" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Erstellt am:" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "LDAP-Konfiguration" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Name" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Kein Anmelde-Attribut gefunden: Konnte aus Filter %s kein Anmelde-Attribut " +"extrahieren" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Anzahl angelegter Benutzer" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Einpflegen" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Pflege Benutzer aus LDAP ein" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zuletzt geändert am" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/el_GR.po b/users_ldap_populate/i18n/el_GR.po new file mode 100644 index 0000000000..076dad83ab --- /dev/null +++ b/users_ldap_populate/i18n/el_GR.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Κωδικός" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Ονομασία" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/en_GB.po b/users_ldap_populate/i18n/en_GB.po new file mode 100644 index 0000000000..4f89808cc7 --- /dev/null +++ b/users_ldap_populate/i18n/en_GB.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Created on" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Name" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Last Modified on" diff --git a/users_ldap_populate/i18n/es.po b/users_ldap_populate/i18n/es.po new file mode 100644 index 0000000000..f5519e5115 --- /dev/null +++ b/users_ldap_populate/i18n/es.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2020-06-26 22:42+0200\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.3\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Añadir botón para poblar en la vista LDAP" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Configuración LDAP de la compañía" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Desactivar usuarios desconocidos" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configuración LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" +"Listar usuarios que nunca deben ser desactivados por el asistente de " +"desactivación" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"No se ha encontrado el atributo de login: no se puede extraer el atributo de " +"login del filtro %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Número de usuarios creados" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Número de usuarios desactivados" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Poblar" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Popular usuarios" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Poblar usuarios desde LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "Imposible procesar usuario con el login %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Usuarios a no desactivar nunca" + +#~ msgid "Last Modified on" +#~ msgstr "Última actualización por" diff --git a/users_ldap_populate/i18n/es_AR.po b/users_ldap_populate/i18n/es_AR.po new file mode 100644 index 0000000000..1e6dd1c875 --- /dev/null +++ b/users_ldap_populate/i18n/es_AR.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/users_ldap_populate/i18n/es_CL.po b/users_ldap_populate/i18n/es_CL.po new file mode 100644 index 0000000000..5129414d32 --- /dev/null +++ b/users_ldap_populate/i18n/es_CL.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/users_ldap_populate/i18n/es_CO.po b/users_ldap_populate/i18n/es_CO.po new file mode 100644 index 0000000000..209ec68e93 --- /dev/null +++ b/users_ldap_populate/i18n/es_CO.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificación el" diff --git a/users_ldap_populate/i18n/es_CR.po b/users_ldap_populate/i18n/es_CR.po new file mode 100644 index 0000000000..ca1bf166da --- /dev/null +++ b/users_ldap_populate/i18n/es_CR.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/es_DO.po b/users_ldap_populate/i18n/es_DO.po new file mode 100644 index 0000000000..1ae1cc555e --- /dev/null +++ b/users_ldap_populate/i18n/es_DO.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/users_ldap_populate/i18n/es_EC.po b/users_ldap_populate/i18n/es_EC.po new file mode 100644 index 0000000000..2d48d042e3 --- /dev/null +++ b/users_ldap_populate/i18n/es_EC.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/users_ldap_populate/i18n/es_ES.po b/users_ldap_populate/i18n/es_ES.po new file mode 100644 index 0000000000..a2679a79e8 --- /dev/null +++ b/users_ldap_populate/i18n/es_ES.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-05-01 10:39+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/users_ldap_populate/i18n/es_MX.po b/users_ldap_populate/i18n/es_MX.po new file mode 100644 index 0000000000..1d14140a2a --- /dev/null +++ b/users_ldap_populate/i18n/es_MX.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modificacion realizada" diff --git a/users_ldap_populate/i18n/es_PE.po b/users_ldap_populate/i18n/es_PE.po new file mode 100644 index 0000000000..f6b346ff3d --- /dev/null +++ b/users_ldap_populate/i18n/es_PE.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima Modificación en" diff --git a/users_ldap_populate/i18n/es_PY.po b/users_ldap_populate/i18n/es_PY.po new file mode 100644 index 0000000000..089e05795d --- /dev/null +++ b/users_ldap_populate/i18n/es_PY.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/es_VE.po b/users_ldap_populate/i18n/es_VE.po new file mode 100644 index 0000000000..dea6857bce --- /dev/null +++ b/users_ldap_populate/i18n/es_VE.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nombre" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Modificada por última vez" diff --git a/users_ldap_populate/i18n/et.po b/users_ldap_populate/i18n/et.po new file mode 100644 index 0000000000..6ca97ebb0e --- /dev/null +++ b/users_ldap_populate/i18n/et.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nimi" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Viimati muudetud" diff --git a/users_ldap_populate/i18n/eu.po b/users_ldap_populate/i18n/eu.po new file mode 100644 index 0000000000..8085f89b76 --- /dev/null +++ b/users_ldap_populate/i18n/eu.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Created on" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Izena" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/fa.po b/users_ldap_populate/i18n/fa.po new file mode 100644 index 0000000000..ff3058dc7e --- /dev/null +++ b/users_ldap_populate/i18n/fa.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "شناسه" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "نام" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "تاریخ آخرین به‌روزرسانی" diff --git a/users_ldap_populate/i18n/fi.po b/users_ldap_populate/i18n/fi.po new file mode 100644 index 0000000000..34744c22e0 --- /dev/null +++ b/users_ldap_populate/i18n/fi.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-07-05 18:08+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/" +"language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nimi" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Viimeksi muokattu" diff --git a/users_ldap_populate/i18n/fr.po b/users_ldap_populate/i18n/fr.po new file mode 100644 index 0000000000..199a98b4ee --- /dev/null +++ b/users_ldap_populate/i18n/fr.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2019-24-04 13:23+0000\n" +"Last-Translator: Robin Hède \n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Poedit 2.2.1\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Ajout du bouton Remplir à la vue LDAP" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Désactiver les utilisateurs inconnus" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Identifiant" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nom" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login " +"du filtre %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Nombre d'utilisateurs créés" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Nombre d'utilisateurs archivés" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Synchroniser" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Synchroniser les utilisateurs" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Synchroniser les utilisateurs depuis le serveur LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" +"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Utilisateurs à ne pas archiver" + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/fr_CA.po b/users_ldap_populate/i18n/fr_CA.po new file mode 100644 index 0000000000..54bd82bd48 --- /dev/null +++ b/users_ldap_populate/i18n/fr_CA.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-12-30 01:36+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Désactiver les utilisateurs inconnus" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Identifiant" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nom" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login " +"du filtre %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Nombre d'utilisateurs créés" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Nombre d'utilisateurs archivés" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Synchroniser" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Synchroniser les utilisateurs" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Synchroniser les utilisateurs depuis le serveur LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" +"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Utilisateurs à ne pas archiver" + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/fr_CH.po b/users_ldap_populate/i18n/fr_CH.po new file mode 100644 index 0000000000..3f4e1d61c0 --- /dev/null +++ b/users_ldap_populate/i18n/fr_CH.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Désactiver les utilisateurs inconnus" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Identifiant" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configuration LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nom" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login " +"du filtre %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Nombre d'utilisateurs créés" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Nombre d'utilisateurs archivés" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Synchroniser" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Synchroniser les utilisateurs" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Synchroniser les utilisateurs depuis le serveur LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" +"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Utilisateurs à ne pas archiver" + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/gl.po b/users_ldap_populate/i18n/gl.po new file mode 100644 index 0000000000..f96d39fa3b --- /dev/null +++ b/users_ldap_populate/i18n/gl.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nome" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación" diff --git a/users_ldap_populate/i18n/gl_ES.po b/users_ldap_populate/i18n/gl_ES.po new file mode 100644 index 0000000000..e5ac400998 --- /dev/null +++ b/users_ldap_populate/i18n/gl_ES.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-12-30 01:36+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/he.po b/users_ldap_populate/i18n/he.po new file mode 100644 index 0000000000..988f7b85cd --- /dev/null +++ b/users_ldap_populate/i18n/he.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "מזהה" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "שם" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "תאריך שינוי אחרון" diff --git a/users_ldap_populate/i18n/hr.po b/users_ldap_populate/i18n/hr.po new file mode 100644 index 0000000000..6d90501a6e --- /dev/null +++ b/users_ldap_populate/i18n/hr.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naziv" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje modificirano" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/hr_HR.po b/users_ldap_populate/i18n/hr_HR.po new file mode 100644 index 0000000000..d82fc1b1ea --- /dev/null +++ b/users_ldap_populate/i18n/hr_HR.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Dodaj gumb Popuni na ldap prikaz" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "LDAP postavke" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "LDAP postavke" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naziv" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Nije pronađen login atribut: Nije moguće izvući login atribut iz filtera %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Broje kreiranih korisnika" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Popuni" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Popuni korisnike iz LDAP-a" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje modificirano" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/hu.po b/users_ldap_populate/i18n/hu.po new file mode 100644 index 0000000000..280e8fddd6 --- /dev/null +++ b/users_ldap_populate/i18n/hu.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Név" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Utolsó frissítés dátuma" diff --git a/users_ldap_populate/i18n/id.po b/users_ldap_populate/i18n/id.po new file mode 100644 index 0000000000..0f3ee6791e --- /dev/null +++ b/users_ldap_populate/i18n/id.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nama" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Terakhir Dimodifikasi pada" diff --git a/users_ldap_populate/i18n/it.po b/users_ldap_populate/i18n/it.po new file mode 100644 index 0000000000..bada6637d6 --- /dev/null +++ b/users_ldap_populate/i18n/it.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# Paolo Valier , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2024-01-04 10:34+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Aggiungi pulsante compilazione alla vista LDAP" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Configurazione LDAP azienda" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Disattiva utenti sconosciuti" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configurazione LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" +"Elenco utenti che non devono essere disattivati dalla procedura guidata di " +"disattivazione" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nome" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Nessun attributo di accesso trovato: impossibile estrarre attributo di " +"accesso dal filtro %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Numero di utenti creati" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Numero di utenti disattivati" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "OK" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Compila" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Compila database utente" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Compila utenti da LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "Impossibile elaborare utente con accesso %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Utenti da non disattivare" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modifica il" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/ja.po b/users_ldap_populate/i18n/ja.po new file mode 100644 index 0000000000..43450b9531 --- /dev/null +++ b/users_ldap_populate/i18n/ja.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "作成日" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "名称" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "最終更新日" diff --git a/users_ldap_populate/i18n/ko.po b/users_ldap_populate/i18n/ko.po new file mode 100644 index 0000000000..0640de5cb3 --- /dev/null +++ b/users_ldap_populate/i18n/ko.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "작성일" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "이름" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "최근 수정" diff --git a/users_ldap_populate/i18n/lt.po b/users_ldap_populate/i18n/lt.po new file mode 100644 index 0000000000..3deb4c2d8e --- /dev/null +++ b/users_ldap_populate/i18n/lt.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Paskutinį kartą keista" diff --git a/users_ldap_populate/i18n/lt_LT.po b/users_ldap_populate/i18n/lt_LT.po new file mode 100644 index 0000000000..4be2e89c11 --- /dev/null +++ b/users_ldap_populate/i18n/lt_LT.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-12-30 01:36+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/lv.po b/users_ldap_populate/i18n/lv.po new file mode 100644 index 0000000000..3f5e0cfa23 --- /dev/null +++ b/users_ldap_populate/i18n/lv.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nosaukums" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/mk.po b/users_ldap_populate/i18n/mk.po new file mode 100644 index 0000000000..432f8479fc --- /dev/null +++ b/users_ldap_populate/i18n/mk.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Име" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Последна промена на" diff --git a/users_ldap_populate/i18n/mn.po b/users_ldap_populate/i18n/mn.po new file mode 100644 index 0000000000..dc2e6f28a1 --- /dev/null +++ b/users_ldap_populate/i18n/mn.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Нэр" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Сүүлийн засвар хийсэн огноо" diff --git a/users_ldap_populate/i18n/nb.po b/users_ldap_populate/i18n/nb.po new file mode 100644 index 0000000000..636cf91319 --- /dev/null +++ b/users_ldap_populate/i18n/nb.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Navn" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sist oppdatert " diff --git a/users_ldap_populate/i18n/nb_NO.po b/users_ldap_populate/i18n/nb_NO.po new file mode 100644 index 0000000000..bbb0da899f --- /dev/null +++ b/users_ldap_populate/i18n/nb_NO.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-12-30 01:36+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sist endret den" diff --git a/users_ldap_populate/i18n/nl.po b/users_ldap_populate/i18n/nl.po new file mode 100644 index 0000000000..ec5547efe2 --- /dev/null +++ b/users_ldap_populate/i18n/nl.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naam" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst bijgewerkt op" diff --git a/users_ldap_populate/i18n/nl_BE.po b/users_ldap_populate/i18n/nl_BE.po new file mode 100644 index 0000000000..831f5afa53 --- /dev/null +++ b/users_ldap_populate/i18n/nl_BE.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naam:" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst Aangepast op" diff --git a/users_ldap_populate/i18n/nl_NL.po b/users_ldap_populate/i18n/nl_NL.po new file mode 100644 index 0000000000..60aa1a4ffd --- /dev/null +++ b/users_ldap_populate/i18n/nl_NL.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-06-22 01:12+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naam" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst gewijzigd op" diff --git a/users_ldap_populate/i18n/pl.po b/users_ldap_populate/i18n/pl.po new file mode 100644 index 0000000000..aa5b44aa7e --- /dev/null +++ b/users_ldap_populate/i18n/pl.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nazwa" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ostatnio modyfikowano" diff --git a/users_ldap_populate/i18n/pt.po b/users_ldap_populate/i18n/pt.po new file mode 100644 index 0000000000..1b58b7f231 --- /dev/null +++ b/users_ldap_populate/i18n/pt.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nome" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificação Em" diff --git a/users_ldap_populate/i18n/pt_BR.po b/users_ldap_populate/i18n/pt_BR.po new file mode 100644 index 0000000000..44fb48d5b5 --- /dev/null +++ b/users_ldap_populate/i18n/pt_BR.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2024-05-29 16:35+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Adicione botão popular na visão ldap" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Configuração LDAP da empresa" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "Desative usuários desconhecidos" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Identificação" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "Configuração LDAP" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" +"Listar usuários que nunca devem ser desativados pelo assistente de " +"desativação" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nome" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Nenhum atributo de login encontrado: não foi possível extrair o atributo de " +"login do filtro %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Número de usuários criado" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "Número de usuários desativados" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "Certo" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Popular" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "Popular base de dados de usuário" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Popular usuários do LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "Não foi possível processar o usuário com login %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "Usuários nunca devem desativar" + +#~ msgid "Last Modified on" +#~ msgstr "Última atualização em" diff --git a/users_ldap_populate/i18n/pt_PT.po b/users_ldap_populate/i18n/pt_PT.po new file mode 100644 index 0000000000..b39c9e6e3c --- /dev/null +++ b/users_ldap_populate/i18n/pt_PT.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nome" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Última Modificação Em" diff --git a/users_ldap_populate/i18n/ro.po b/users_ldap_populate/i18n/ro.po new file mode 100644 index 0000000000..c4790f6b56 --- /dev/null +++ b/users_ldap_populate/i18n/ro.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Nume" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima actualizare în" diff --git a/users_ldap_populate/i18n/ru.po b/users_ldap_populate/i18n/ru.po new file mode 100644 index 0000000000..fbcfe9c5eb --- /dev/null +++ b/users_ldap_populate/i18n/ru.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2016-12-30 01:36+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Создан" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Название" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/sk.po b/users_ldap_populate/i18n/sk.po new file mode 100644 index 0000000000..bbfb202c01 --- /dev/null +++ b/users_ldap_populate/i18n/sk.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Meno" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Posledná modifikácia" diff --git a/users_ldap_populate/i18n/sl.po b/users_ldap_populate/i18n/sl.po new file mode 100644 index 0000000000..c2c0f267e8 --- /dev/null +++ b/users_ldap_populate/i18n/sl.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2023-03-31 21:25+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "Dodaj gumb 'Naseli' v LDAP prikaz" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "LDAP nastavitve" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "LDAP nastavitve" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Naziv" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" +"Prijavni atribut ni najden: ni bilo mogoče izvleči prijavnega atributa iz " +"filtra %s" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "Število ustvarjenih uporabnikov" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "V redu" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "Naseli" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "Naseli uporabnike iz LDAP" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnjič spremenjeno" + +#~ msgid "res.company.ldap" +#~ msgstr "res.company.ldap" diff --git a/users_ldap_populate/i18n/sr.po b/users_ldap_populate/i18n/sr.po new file mode 100644 index 0000000000..9fcff65116 --- /dev/null +++ b/users_ldap_populate/i18n/sr.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Ime" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/sr@latin.po b/users_ldap_populate/i18n/sr@latin.po new file mode 100644 index 0000000000..dedc299be8 --- /dev/null +++ b/users_ldap_populate/i18n/sr@latin.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Ime:" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnja izmjena" diff --git a/users_ldap_populate/i18n/sv.po b/users_ldap_populate/i18n/sv.po new file mode 100644 index 0000000000..43541372ed --- /dev/null +++ b/users_ldap_populate/i18n/sv.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Namn" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Senast redigerad" diff --git a/users_ldap_populate/i18n/th.po b/users_ldap_populate/i18n/th.po new file mode 100644 index 0000000000..7789a31a7d --- /dev/null +++ b/users_ldap_populate/i18n/th.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "รหัส" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "ชื่อ" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ" diff --git a/users_ldap_populate/i18n/tr.po b/users_ldap_populate/i18n/tr.po new file mode 100644 index 0000000000..2c323f14bc --- /dev/null +++ b/users_ldap_populate/i18n/tr.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Adı" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Son değişiklik" diff --git a/users_ldap_populate/i18n/tr_TR.po b/users_ldap_populate/i18n/tr_TR.po new file mode 100644 index 0000000000..94b30e1b91 --- /dev/null +++ b/users_ldap_populate/i18n/tr_TR.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-22 00:55+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "Kimlik" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Ad" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "En son güncelleme tarihi" diff --git a/users_ldap_populate/i18n/uk.po b/users_ldap_populate/i18n/uk.po new file mode 100644 index 0000000000..1e9ba701ef --- /dev/null +++ b/users_ldap_populate/i18n/uk.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Name" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Остання модифікація" diff --git a/users_ldap_populate/i18n/users_ldap_populate.pot b/users_ldap_populate/i18n/users_ldap_populate.pot new file mode 100644 index 0000000000..65d2ae36a0 --- /dev/null +++ b/users_ldap_populate/i18n/users_ldap_populate.pot @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \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: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/vi.po b/users_ldap_populate/i18n/vi.po new file mode 100644 index 0000000000..b124ba2a2e --- /dev/null +++ b/users_ldap_populate/i18n/vi.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Tên" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "Sửa lần cuối vào" diff --git a/users_ldap_populate/i18n/vi_VN.po b/users_ldap_populate/i18n/vi_VN.po new file mode 100644 index 0000000000..c783c06644 --- /dev/null +++ b/users_ldap_populate/i18n/vi_VN.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-02-18 02:29+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "Tên" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" diff --git a/users_ldap_populate/i18n/zh_CN.po b/users_ldap_populate/i18n/zh_CN.po new file mode 100644 index 0000000000..5f187497e8 --- /dev/null +++ b/users_ldap_populate/i18n/zh_CN.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +#, fuzzy +msgid "Company LDAP configuration" +msgstr "LDAP 配置" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "ID" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "LDAP 配置" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "名称" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "繁殖" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "最后修改时间" diff --git a/users_ldap_populate/i18n/zh_TW.po b/users_ldap_populate/i18n/zh_TW.po new file mode 100644 index 0000000000..326080de47 --- /dev/null +++ b/users_ldap_populate/i18n/zh_TW.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * users_ldap_populate +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-06-26 20:39+0000\n" +"PO-Revision-Date: 2017-12-01 02:11+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "Add populate button to ldap view" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date +msgid "Created on" +msgstr "建立於" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users +msgid "Deactivate unknown users" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id +msgid "ID" +msgstr "編號" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id +msgid "LDAP Configuration" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: users_ldap_populate +#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "List users who never should be deactivated by the deactivation wizard" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name +msgid "Name" +msgstr "名稱" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "" +"No login attribute found: Could not extract login attribute from filter %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created +msgid "Number of users created" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated +msgid "Number of users deactivated" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view +msgid "OK" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate" +msgstr "" + +#. module: users_ldap_populate +#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view +msgid "Populate user database" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard +msgid "Populate users from LDAP" +msgstr "" + +#. module: users_ldap_populate +#. odoo-python +#: code:addons/users_ldap_populate/models/users_ldap.py:0 +#, python-format +msgid "Unable to process user with login %s" +msgstr "" + +#. module: users_ldap_populate +#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids +msgid "Users never to deactivate" +msgstr "" + +#~ msgid "Last Modified on" +#~ msgstr "最後修改:" diff --git a/users_ldap_populate/models/__init__.py b/users_ldap_populate/models/__init__.py new file mode 100644 index 0000000000..cf23628684 --- /dev/null +++ b/users_ldap_populate/models/__init__.py @@ -0,0 +1,5 @@ +# Copyright 2012 Therp BV () +# Copyright 2023 Tecnativa - Carolina Fernandez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html). + +from . import users_ldap diff --git a/users_ldap_populate/models/users_ldap.py b/users_ldap_populate/models/users_ldap.py new file mode 100644 index 0000000000..14884d7686 --- /dev/null +++ b/users_ldap_populate/models/users_ldap.py @@ -0,0 +1,202 @@ +# Copyright 2012 Therp BV () +# Copyright 2021 Tecnativa - João Marques +# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html). + +import logging +import re + +from odoo import SUPERUSER_ID, _, fields, models +from odoo.exceptions import AccessDenied, UserError + +_logger = logging.getLogger(__name__) + +try: + import ldap + from ldap.filter import filter_format +except ImportError: + _logger.debug("Cannot import ldap.") + + +class CompanyLDAP(models.Model): + _inherit = "res.company.ldap" + + no_deactivate_user_ids = fields.Many2many( + comodel_name="res.users", + relation="res_company_ldap_no_deactivate_user_rel", + column1="ldap_id", + column2="user_id", + string="Users never to deactivate", + help="List users who never should be deactivated by the deactivation wizard", + default=lambda self: [(6, 0, [SUPERUSER_ID])], + ) + deactivate_unknown_users = fields.Boolean( + string="Deactivate unknown users", + default=False, + ) + + def action_populate(self): + """ + Prepopulate the user table from one or more LDAP resources. + + Obviously, the option to create users must be toggled in + the LDAP configuration. + + Return the number of users created (as far as we can tell). + """ + _logger.debug("action_populate called on res.company.ldap ids %s", self.ids) + users_model = self.env["res.users"] + users_count_before = users_model.search_count([]) + deactivate_unknown, known_user_ids = self._check_users() + if deactivate_unknown: + _logger.debug("will deactivate unknown users") + for conf in self._get_ldap_dicts(): + if not conf["create_user"]: + continue + attribute_match = re.search(r"([a-zA-Z_]+)=\%s", conf["ldap_filter"]) + if attribute_match: + login_attr = attribute_match.group(1) + else: + raise UserError( + _( + "No login attribute found: " + "Could not extract login attribute from filter %s" + ) + % conf["ldap_filter"] + ) + results = self._get_ldap_entry_dicts(conf) + for result in results: + login = result[1][login_attr][0].lower().strip() + if isinstance(login, bytes): + login = login.decode() + user_id = None + try: + user_id = self.with_context( + no_reset_password=True + )._get_or_create_user(conf, login, result) + except AccessDenied as e: + # this happens if the user exists but is active = False + # -> fetch the user again and reactivate it + self.env.cr.execute( + "SELECT id FROM res_users WHERE lower(login)=%s", (login,) + ) + res = self.env.cr.fetchone() + _logger.debug("unarchiving user %s", login) + if res: + self.env["res.users"].sudo().browse(res[0]).write( + {"active": True} + ) + user_id = res[0] + else: + raise UserError from e( + _("Unable to process user with login %s") % login + ) + finally: + known_user_ids.append(user_id) + users_created = users_model.search_count([]) - users_count_before + + deactivated_users_count = 0 + if deactivate_unknown: + deactivated_users_count = self.do_deactivate_unknown_users(known_user_ids) + + _logger.debug("%d users created", users_created) + _logger.debug("%d users deactivated", deactivated_users_count) + return users_created, deactivated_users_count + + def _check_users(self): + ldap_config = self.search([]) + deactivate_unknown = None + known_user_ids = [self.env.user.id] + for item in ldap_config.read( + ["no_deactivate_user_ids", "deactivate_unknown_users"], + load="_classic_write", + ): + if deactivate_unknown is None: + deactivate_unknown = True + known_user_ids.extend(item["no_deactivate_user_ids"]) + deactivate_unknown &= item["deactivate_unknown_users"] + return deactivate_unknown, known_user_ids + + def _get_ldap_entry_dicts(self, conf, user_name="*", timeout=60): + """Execute ldap query as defined in conf. + + Don't call self.query because it supresses possible exceptions + """ + ldap_filter = filter_format(conf["ldap_filter"] % user_name, ()) + conn = self._connect(conf) + ldap_password = conf["ldap_password"] or "" + ldap_binddn = conf["ldap_binddn"] or "" + conn.simple_bind_s(ldap_binddn, ldap_password) + results = conn.search_st( + conf["ldap_base"], ldap.SCOPE_SUBTREE, ldap_filter, None, timeout=timeout + ) + conn.unbind() + return results + + def do_deactivate_unknown_users(self, known_user_ids): + """Deactivate users not found in last populate run.""" + unknown_user_ids = [] + known_user_ids = list(set(known_user_ids)) + users = ( + self.env["res.users"] + .sudo() + .search([("id", "not in", known_user_ids)], order="login") + ) + ldap_confs = self._get_ldap_dicts() + for unknown_user in users: + _logger.debug("checking user %s", unknown_user.login) + present_in_ldap = any( + bool( + self._get_ldap_entry_dicts( + conf, + user_name=unknown_user.login, + ) + ) + for conf in ldap_confs + ) + if not present_in_ldap: + _logger.debug("archiving user %s", unknown_user.login) + unknown_user.active = False + unknown_user_ids.append(unknown_user.id) + return len(unknown_user_ids) + + def get_ldap_entry_dicts(self, conf, user_name="*"): + """ + Execute ldap query as defined in conf + + Don't call self.query because it supresses possible exceptions + """ + ldap_filter = ( + filter_format(conf["ldap_filter"], (user_name,)) + if user_name != "*" + else conf["ldap_filter"] % user_name + ) + conn = self.connect(conf) + conn.simple_bind_s(conf["ldap_binddn"] or "", conf["ldap_password"] or "") + results = conn.search_st( + conf["ldap_base"], ldap.SCOPE_SUBTREE, ldap_filter, None, timeout=60 + ) + conn.unbind() + + return results + + def populate_wizard(self): + """ + GUI wrapper for the populate method that reports back + the number of users created. + """ + self.ensure_one() + wizard_obj = self.env["res.company.ldap.populate_wizard"] + res_id = wizard_obj.create({"ldap_id": self.id}).id + + return { + "name": wizard_obj._description, + "view_type": "form", + "view_mode": "form", + "res_model": wizard_obj._name, + "domain": [], + "context": self.env.context, + "type": "ir.actions.act_window", + "target": "new", + "res_id": res_id, + "nodestroy": True, + } diff --git a/users_ldap_populate/pyproject.toml b/users_ldap_populate/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/users_ldap_populate/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/users_ldap_populate/readme/CONTRIBUTORS.md b/users_ldap_populate/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..ada249b8c1 --- /dev/null +++ b/users_ldap_populate/readme/CONTRIBUTORS.md @@ -0,0 +1,6 @@ +- Therp BV \<\> +- [Tecnativa](https://www.tecnativa.com): + - Alexandre Díaz + - João Marques + - Carlos Roca + - Carolina Fernandez diff --git a/users_ldap_populate/readme/DESCRIPTION.md b/users_ldap_populate/readme/DESCRIPTION.md new file mode 100644 index 0000000000..38011967fa --- /dev/null +++ b/users_ldap_populate/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +This module extends the functionality of auth_ldap by adding +functionality so that users can be populated from a LDAP server. diff --git a/users_ldap_populate/readme/ROADMAP.md b/users_ldap_populate/readme/ROADMAP.md new file mode 100644 index 0000000000..00cf0bdca4 --- /dev/null +++ b/users_ldap_populate/readme/ROADMAP.md @@ -0,0 +1,2 @@ +- Improve test coverage and port its LDAP Patch method to a module where + they can be imported and reutilized on other tests. diff --git a/users_ldap_populate/readme/USAGE.md b/users_ldap_populate/readme/USAGE.md new file mode 100644 index 0000000000..3ae2f69505 --- /dev/null +++ b/users_ldap_populate/readme/USAGE.md @@ -0,0 +1,7 @@ +To use this module, you need to: + +1. Go to 'Settings' -\> 'General Settings' +2. In the LDAP category click on or add a LDAP configuration +3. In the pop-up enter all the LDAP settings +4. Click the populate button +5. A new pop-up will notify you of how many users are added diff --git a/users_ldap_populate/security/ir.model.access.csv b/users_ldap_populate/security/ir.model.access.csv new file mode 100644 index 0000000000..a53c5d34d2 --- /dev/null +++ b/users_ldap_populate/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_res_company_ldap_populate_wizard,access_res_company_ldap_populate_wizard,model_res_company_ldap_populate_wizard,base.group_system,1,1,1,1 diff --git a/users_ldap_populate/static/description/icon.png b/users_ldap_populate/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/users_ldap_populate/static/description/icon.png differ diff --git a/users_ldap_populate/static/description/index.html b/users_ldap_populate/static/description/index.html new file mode 100644 index 0000000000..fef577b26b --- /dev/null +++ b/users_ldap_populate/static/description/index.html @@ -0,0 +1,450 @@ + + + + + +LDAP Populate + + + +
+

LDAP Populate

+ + +

Beta License: AGPL-3 OCA/server-auth Translate me on Weblate Try me on Runboat

+

This module extends the functionality of auth_ldap by adding +functionality so that users can be populated from a LDAP server.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to ‘Settings’ -> ‘General Settings’
  2. +
  3. In the LDAP category click on or add a LDAP configuration
  4. +
  5. In the pop-up enter all the LDAP settings
  6. +
  7. Click the populate button
  8. +
  9. A new pop-up will notify you of how many users are added
  10. +
+
+
+

Known issues / Roadmap

+
    +
  • Improve test coverage and port its LDAP Patch method to a module where +they can be imported and reutilized on other tests.
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Therp BV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

joao-p-marques

+

This module is part of the OCA/server-auth project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/users_ldap_populate/tests/__init__.py b/users_ldap_populate/tests/__init__.py new file mode 100644 index 0000000000..6b833dd97e --- /dev/null +++ b/users_ldap_populate/tests/__init__.py @@ -0,0 +1 @@ +from . import test_users_ldap_populate diff --git a/users_ldap_populate/tests/test_users_ldap_populate.py b/users_ldap_populate/tests/test_users_ldap_populate.py new file mode 100644 index 0000000000..79bde88a48 --- /dev/null +++ b/users_ldap_populate/tests/test_users_ldap_populate.py @@ -0,0 +1,118 @@ +# Copyright 2016-2018 Therp BV . +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from contextlib import contextmanager + +from odoo.tests.common import TransactionCase + + +class PatchLDAPConnection: + def __init__(self, results): + self.results = results + + def simple_bind_s(self, user, password): + return True + + def search_st(self, base, scope, ldap_filter, attributes, timeout=None): + if ldap_filter == "(uid=*)": + return self.results + else: + return [] + + def unbind(self): + return True + + +@contextmanager +def patch_ldap(self, results): + """defuse ldap functions to return fake entries instead of talking to a + server. Use this in your own ldap related tests""" + import ldap + + original_initialize = ldap.initialize + + def initialize(uri): + return PatchLDAPConnection(results) + + ldap.initialize = initialize + yield + ldap.initialize = original_initialize + + +def get_fake_ldap(self): + company = self.env.ref("base.main_company") + company.write( + { + "ldaps": [ + ( + 0, + 0, + { + "ldap_server": "fake", + "ldap_server_port": 389, + "ldap_filter": "(uid=%s)", + "ldap_base": "fake", + "deactivate_unknown_users": True, + "no_deactivate_user_ids": [ + (6, 0, [self.env.ref("base.user_admin").id]) + ], + }, + ) + ], + } + ) + return company.ldaps.filtered(lambda x: x.ldap_server == "fake") + + +class TestUsersLdapPopulate(TransactionCase): + def test_users_ldap_populate(self): + previous_users_count = self.env["res.users"].search_count([]) + with patch_ldap( + self, + [ + ( + "DN=fake", + {"cn": ["fake"], "uid": ["fake"], "mail": ["fake@fakery.com"]}, + ) + ], + ): + ldap = get_fake_ldap(self) + res = ldap.populate_wizard() + ldap_populate_wizard = self.env["res.company.ldap.populate_wizard"].browse( + res["res_id"] + ) + self.assertEqual(ldap_populate_wizard.users_created, 1) + self.assertEqual( + ldap_populate_wizard.users_deactivated, previous_users_count - 1 + ) # Admin is not deactivated + self.assertFalse(self.env.ref("base.user_demo").active) + self.assertTrue(self.env.ref("base.user_admin").active) + self.assertTrue(self.env["res.users"].search([("login", "=", "fake")])) + + def test_users_ldap_populate_reactivate(self): + # Create deactivated user + inactive_user = self.env["res.users"].create( + {"name": "test_inactive", "login": "test_inactive", "active": False} + ) + with patch_ldap( + self, + [ + ( + "DN=test_inactive", + { + "cn": ["test_inactive"], + "uid": ["test_inactive"], + "mail": ["test_inactive@fakery.com"], + }, + ) + ], + ): + ldap = get_fake_ldap(self) + res = ldap.populate_wizard() + ldap_populate_wizard = self.env["res.company.ldap.populate_wizard"].browse( + res["res_id"] + ) + self.assertEqual(ldap_populate_wizard.users_created, 1) + self.assertTrue(inactive_user.active) + self.assertTrue( + self.env["res.users"].search([("login", "=", "test_inactive")]) + ) diff --git a/users_ldap_populate/views/users_ldap.xml b/users_ldap_populate/views/users_ldap.xml new file mode 100644 index 0000000000..602b67ae48 --- /dev/null +++ b/users_ldap_populate/views/users_ldap.xml @@ -0,0 +1,26 @@ + + + + Add populate button to ldap view + res.company.ldap + + + + + + + +