diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..64f802b --- /dev/null +++ b/README.rst @@ -0,0 +1,66 @@ +Adds support for authentication by LDAP server. +=============================================== +This module allows users to login with their LDAP username and password, and +will automatically create Odoo users for them on the fly. + +**Note:** This module only work on servers that have Python's ``python-ldap`` module installed. + +Configuration: +-------------- +After installing this module, you need to configure the LDAP parameters in the +General Settings menu. Different companies may have different +LDAP servers, as long as they have unique usernames (usernames need to be unique +in Odoo, even across multiple companies). + +Anonymous LDAP binding is also supported (for LDAP servers that allow it), by +simply keeping the LDAP user and password empty in the LDAP configuration. +This does not allow anonymous authentication for users, it is only for the master +LDAP account that is used to verify if a user exists before attempting to +authenticate it. + +Securing the connection with STARTTLS is available for LDAP servers supporting +it, by enabling the TLS option in the LDAP configuration. + +For further options configuring the LDAP settings, refer to the ldap.conf +manpage: manpage:`ldap.conf(5)`. + +Security Considerations: +------------------------ +Users' LDAP passwords are never stored in the Odoo database, the LDAP server +is queried whenever a user needs to be authenticated. No duplication of the +password occurs, and passwords are managed in one place only. + +Odoo does not manage password changes in the LDAP, so any change of password +should be conducted by other means in the LDAP directory directly (for LDAP users). + +It is also possible to have local Odoo users in the database along with +LDAP-authenticated users (the Administrator account is one obvious example). + +Here is how it works: +--------------------- + * The system first attempts to authenticate users against the local Odoo + database; + * if this authentication fails (for example because the user has no local + password), the system then attempts to authenticate against LDAP; + +As LDAP users have blank passwords by default in the local Odoo database +(which means no access), the first step always fails and the LDAP server is +queried to do the authentication. + +Enabling STARTTLS ensures that the authentication query to the LDAP server is +encrypted. + +User Template: +-------------- +In the LDAP configuration on the General Settings, it is possible to select a *User +Template*. If set, this user will be used as template to create the local users +whenever someone authenticates for the first time via LDAP authentication. This +allows pre-setting the default groups and menus of the first-time users. + +**Warning:** if you set a password for the user template, this password will be + assigned as local password for each new LDAP user, effectively setting + a *master password* for these users (until manually changed). You + usually do not want this. One easy way to setup a template user is to + login once with a valid LDAP user, let Odoo create a blank local + user with the same login (and a blank password), then rename this new + user to a username that does not exist in LDAP, and setup its groups diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..d6210b1 --- /dev/null +++ b/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..b24a18d --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,17 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Authentication via LDAP', + 'depends': ['base', 'base_setup'], + #'description': < auto-loaded from README file + 'category': 'Hidden/Tools', + 'data': [ + 'views/ldap_installer_views.xml', + 'security/ir.model.access.csv', + 'views/res_config_settings_views.xml', + ], + 'external_dependencies': { + 'python': ['ldap'], + }, + 'license': 'LGPL-3', +} diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..ff3e136 --- /dev/null +++ b/i18n/af.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +# Andre de Kock , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Andre de Kock , 2017\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"Language: af\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Maatskappye" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Maatskappy" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Geskep deur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Geskep op" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Laas Gewysig op" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Volgorde" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..a09dcb9 --- /dev/null +++ b/i18n/am.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "ድርጅት" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "ድርጅት" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "ቅደም ተከተል" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..2e78436 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Mustafa Rawi , 2019 +# Akram Alfusayal , 2019 +# amrnegm , 2019 +# Martin Trigaux, 2019 +# hoxhe Aits , 2019 +# Osama Ahmaro , 2019 +# Ali Alrehawi , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Ali Alrehawi , 2019\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "إنشاء مستخدم محلي تلقائيًا للمستخدمين الجدد الذين يسجلون الدخول عبر LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "الشركات" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "الشركة" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "إعدادات LDAP للشركة" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الإعدادات" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "إنشاء مستخدم" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "المُعرف" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "إعدادات LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "باراميترات LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "سيرفر LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "عنوان سيرفر LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "منفذ سيرفر LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "أساس LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP bindDN" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "فلتر LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "كلمة مرور LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "بيانات تسجيل الدخول" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "لم نستطع إيجاد مستخدم محلي لتسجيل الدخول LDAP ولم يتم ضبط النظام لإنشاء مستخدم" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "باراميتر العملية" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "طلب تشفير TLS/SSL عند الاتصال بسيرفر LDAP. هذا الاختيار يتطلب أن يكون قد تم إعداد STATTLS، وإلا ستفشل محاولة المصادقة." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "المسلسل" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "معلومات السيرفر" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "ضبط سيرفر LDAP الخاص بك" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "مستخدم القالب" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "كلمة مرور حساب المستخدم على سيرفر LDAP المستخدمة للاستعلام من الدليل." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "حساب المستخدم على سيرفر LDAP المُستخدم للاستعلام من الدليل. اتركه فارغًا ليتم الاتصال كمجهول." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "استخدام TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "معلومات المستخدم" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "قالب المستخدم لنسخه عند إنشاء مستخدمين جدد" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "المستخدمون" diff --git a/i18n/auth_ldap.pot b/i18n/auth_ldap.pot new file mode 100644 index 0000000..f6653c5 --- /dev/null +++ b/i18n/auth_ldap.pot @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-01-05 12:31+0000\n" +"PO-Revision-Date: 2024-01-05 12:31+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "" +"Automatically create local user accounts for new users authenticating via " +"LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "" +"DN of the user search scope: all descendants of this base will be searched " +"for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#. odoo-python +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "" +"Request secure TLS/SSL encryption when connecting to the LDAP server. This " +"option requires a server with STARTTLS enabled, otherwise all authentication" +" attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "" +"The password of the user account on the LDAP server that is used to query " +"the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "" +"The user account on the LDAP server that is used to query the directory. " +"Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "User" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..0857614 --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..c968d47 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Фирма" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Последователност" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..127dbea --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +# Bole , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Bole , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Kompanija" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..6d7cc75 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Lluís Dalmau , 2018 +# Martin Trigaux, 2018 +# Carles Antoli , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Carles Antoli , 2018\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Compte d'usuari local creat automàticament per nous usuaris autenticats a través de LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Companyia" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Crear usuari" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Mostrar Nom" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Configuració LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Paràmetres LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adreça del servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port del servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "Base LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtre LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Contrasenya LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informació de connexió" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Paràmetre del procés" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Demana xifratge segur TLS/SSL al connectar al servidor LDAP. Aquesta opció necessita un servidor amb STARTTLS actiu, en cas contrari, tots els intents d'autenticació fallaran." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Seqüència" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informació del servidor" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Configureu el vostre servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Plantilla d'usuari" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Contrasenya del compte d'usuari al servidor LDAP que s'utilitza al consultar el directori" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Compte d'usuari del servidor LDAP que s'utilitza per consultar el directori. Deixeu-lo buit per a connectar de forma anònima." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Utilitza TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Usuari a copiar quan es creen nous usuaris" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Usuari a copiar quan es creen nous usuaris" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Usuaris" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..a55336f --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# xlu , 2019 +# Martin Trigaux, 2019 +# Jan Horzinka , 2019 +# trendspotter , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: trendspotter , 2019\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automaticky vytvoří místní uživatelské účty pro nové uživatele přihlašující se přes LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Společnosti" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Firma" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Konfigurace LDAP společnosti" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Vytvořit uživatele" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Nastavení LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parametry LDAPu" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adresa serveru LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port serveru LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtr LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Heslo LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Přihlašovací údaje" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Pro LDAP přihlášení nebyl nalezen žádný lokální uživatel a nebyl nakonfigurován k jeho vytvoření" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parametr procesu" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Vyžádat si zabezpečné šifrování TLS/SSL při připojování k serveru LDAP. Tato možnost vyžaduje aby měl server zapnuté SARTTLS, jinak všechny požadavky selžou." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Číselná řada" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Údaje o serveru" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Nastavte váš server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Šablona uživatele" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Heslo uživatelského účtu na serveru LDAP, které se používá při dotazování adresáře." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Uživatelský účet na serveru LDAP, který se používání při dotazování adresáře. Ponechte prázdné pro anonymní připojování." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Použít TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informace o uživateli" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Uživatel pro zkopírování při vytváření nových uživatelů" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Uživatelé" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..bbf27b5 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Morten Schou , 2019 +# Jesper Carstensen , 2019 +# Sanne Kristensen , 2019 +# lhmflexerp , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: lhmflexerp , 2019\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Opretter automatisk ny lokal bruger når ny bruger logger på via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Virksomheder" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Virksomhed" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Virksomhed LDAP konfiguration" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Opret bruger" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfiguration" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parametre" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP server adresse" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP server port" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP bind dn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP kodeord" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Login-information" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Ingen lokal bruger er fundet for LDAP login og den er ikke konfigureret til at oprette en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Proces parametre" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Kræv sikker TLS/SSL kryptering ved tilslutning til LDAP server. Denne option kræver server med STARTTLS aktiveret, ellers fejler godkendelse." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serverinformation" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Opsætning LDAP server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Skabelon bruger" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Brugers kodeord på LDAP server, bruges ved søgning i directory" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Bruger konto på LDAP server bruges ved søgning i directory. Hvis tomt logges på anonymt." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Brug TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Brugerinformation" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Kopier fra bruger ved oprettelse af ny bruger" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Brugere" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..138041a --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Leon Grill , 2019 +# Martin Trigaux, 2019 +# Chris Egal , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Chris Egal , 2019\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Erstelle automatisch Benutzerkonten für neue Benutzer, die sich mit LDAP anmelden" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Unternehmen" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Firmen LDAP Konfiguration" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationseinstellungen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Benutzer/in anlegen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP-Konfiguration" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP Parameter" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP Server Port" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP Filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP Passwort" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Letzte Änderung am" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Login Information" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Kein lokaler Benutzer für die LDAP-Anmeldung gefunden und nicht zum Erstellen eines Benutzers konfiguriert" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Prozessparameter" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Anforderung einer sicheren TLS/SSL Verschlüsselung für die Verbindung zum LDAP Server. STARTTLS muss aktiviert sein, sonst werden Authentifizierungsversuche fehlschlagen." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sequenz" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Server-Informationen" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Einrichtung Ihres LDAP Servers" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Benutzervorlage" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Das Passwort des Benutzers, der die LDAP Anfragen durchführt" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Des Benutzerkonto für die Identifizierung auf dem LDAP Server. Leer für anonymen Zugang." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS verwenden" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Benutzerinformationen" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Standardbenutzerkonto, das für neue Benutzer verwendet wird" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Benutzer" diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..b03d8af --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Kostas Goutoudis , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Εταιρία" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Δημιουργία Χρήστη" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Κωδικός" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Κωδικός Πρόσβασης LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Πληροφορίες Σύνδεσης" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Ακολουθία" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Πληροφορίες διακομιστή" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Χρήστες" diff --git a/i18n/en_AU.po b/i18n/en_AU.po new file mode 100644 index 0000000..41234c8 --- /dev/null +++ b/i18n/en_AU.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2015-09-07 16:12+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/language/en_AU/)\n" +"Language: en_AU\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Created on" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/en_GB.po b/i18n/en_GB.po new file mode 100644 index 0000000..3090d2e --- /dev/null +++ b/i18n/en_GB.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Companies" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Company" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Created on" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sequence" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..7e1528e --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Gabriel Umana , 2019 +# Cristopher Cravioto , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Cristopher Cravioto , 2019\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"Language: 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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Crear automáticamente una cuenta de usuario local para los usuarios autenticados via LDAP." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Configuración Compañia LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de Configuración" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Crear usuario" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Configuración LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parámetros LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Dirección servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Puerto servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "Base LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "binddn LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtro LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Contraseña LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Información conexión" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Usuarios locales no encontrados por el registro del LDAP y no está configurado la creación de uno" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parámetros del proceso" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Solicitar cifrado TLS/SSL seguro cuando conecte con el servidor LDAP. Esta opción requiere un servidor con STARTTLS habilitado, en otro caso todos los intentos de autenticación fallarán." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Información servidor" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Configurar servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Plantilla de usuario" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "La contraseña de la cuenta de usuario en el servidor LDAP que es usada para acceder al directorio" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "La cuenta de usuario en el servidor LDAP que es usada para acceder al directorio. Dejar vacío para conectar de forma anónima." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Usar TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Información usuario" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Usuario a duplicar cuando se crean nuevos usuarios" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Usuarios" diff --git a/i18n/es_BO.po b/i18n/es_BO.po new file mode 100644 index 0000000..26619a2 --- /dev/null +++ b/i18n/es_BO.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"Language: es_BO\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..e172125 --- /dev/null +++ b/i18n/es_CL.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..b3ae497 --- /dev/null +++ b/i18n/es_CO.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..1f583d5 --- /dev/null +++ b/i18n/es_CR.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_DO.po b/i18n/es_DO.po new file mode 100644 index 0000000..876c043 --- /dev/null +++ b/i18n/es_DO.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_EC.po b/i18n/es_EC.po new file mode 100644 index 0000000..8bc6b0f --- /dev/null +++ b/i18n/es_EC.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por:" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Fecha de modificación" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Ultima Actualización por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Actualizado en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_PA.po b/i18n/es_PA.po new file mode 100644 index 0000000..b4a654f --- /dev/null +++ b/i18n/es_PA.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2015-09-07 16:13+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/language/es_PA/)\n" +"Language: es_PA\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..b41221d --- /dev/null +++ b/i18n/es_PE.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañias" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañia" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_PY.po b/i18n/es_PY.po new file mode 100644 index 0000000..ab4b05d --- /dev/null +++ b/i18n/es_PY.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..d0981d2 --- /dev/null +++ b/i18n/es_VE.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..4e96436 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,232 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Wanradt Koell , 2018 +# Arma Gedonsky , 2018 +# Egon Raamat , 2018 +# Eneli Õigus , 2018 +# Marek Pontus, 2018 +# Martin Aavastik , 2018 +# Helen Sulaoja , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Helen Sulaoja , 2018\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Loo automaatselt kohalikud kasutajakontod uutele LDAP teel audentinud kasutajatele." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Ettevõtted" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Ettevõte" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Loo kasutaja" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Loomise kuupäev" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP seadistus" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parameetrid" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP serveri aadress" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP serveri port" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP baas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP parool" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud (millal)" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Sisselogimise info" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Toimingu parameetrid" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Küsi turvalist TLS/SSL krüpteerimist kui ühendad LDAP serveriga. See valik nõuab serveris STARTTLS lubamist, vastasel juhul kõik audentimised ebaõnnestuvad." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Järjestus" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serveri info" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Seadista LDAP server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Kasutaja mall" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Kasutajakonto parool LDAP serveris, mida kasutatakse selle kausta päringuks." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Kasutajakonto LDAP serveris, mida kasutatakse selle kausta päringuks. Jäta tühjaks, et ühenduda anonüümselt." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Kasuta TLS-i" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Kasutajainfo" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Uute kasutajate loomisel kopeeritud kasutaja." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Kasutajad" diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..7ba5d38 --- /dev/null +++ b/i18n/eu.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Enpresa" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Created on" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekuentzia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..12c6f49 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Hamid Darabi, 2018 +# elaheh pourrezaie , 2018 +# Hamed Mohammadi , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Hamed Mohammadi , 2018\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/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=2; plural=(n > 1);\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "شرکت‌ها" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "شرکت" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "ایجاد کاربر" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "شناسه" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "پیکر بندی LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "آخرین تغییر توسط" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "اطلاعات ورود" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "دنباله" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "اطلاعات سرور" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "کاربران" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..5772e3d --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Eino Mäkitalo , 2018 +# Martin Trigaux, 2018 +# Kari Lindgren , 2018 +# Miku Laitinen , 2018 +# Jarmo Kortetjärvi , 2018 +# Tuomo Aura , 2018 +# Topi Aura , 2018 +# Heikki Katajisto , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Heikki Katajisto , 2018\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Luo uusille LDAPin kautta kirjautuville käyttäjille paikallinen käyttäjä automaattisesti" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Yritys" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Luo käyttäjä" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfiguraatio" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parametrit" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP palvelin" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP palvelimen osoite" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP palvelimen portti" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP suodin" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP salasana" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Kirjautumistiedot" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Prosessin parametri" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Vaadi suojattu TLS/SSL-salaus yhdistäessä LDAP-palvelimeen. Tämä valinta vaatii, että palvelimella on käytössä STARTTLS-protokolla päällä. Muussa tapauksessa kaikki yhteyspyynnöt tulevat epäonnistumaan." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Järjestys" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Palvelimen tiedot" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Määrittele LDAP palvelin" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Mallikäyttäjä" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Salasana LDAP käyttäjätunnukselle jota käytetään hakuihin LDAP hakemistosta." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Käyttäjätunnus, jota käytetään LDAP hakemistokyselyihin. Jätä tyhjäksi niin otetaan yhteyttä anonyymisti." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Käytä TLSää" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Käyttäjän tiedot" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Uutta käyttäjää luotaessa kopioitava käyttäjä" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Käyttäjät" diff --git a/i18n/fo.po b/i18n/fo.po new file mode 100644 index 0000000..8fa525d --- /dev/null +++ b/i18n/fo.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"Language: fo\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Fyritøkur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Fyritøka" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Byrjað av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Byrjað tann" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Vís navn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Seinast rættað tann" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Seinast dagført av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Seinast dagført tann" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..1d2d414 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Cécile Collart , 2019 +# Christophe CHAUVET , 2019 +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"Language: fr\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Création automatique des comptes utilisateur locaux pour les nouveaux utilisateurs authentifiés par LDAP." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Société" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Créer un utilisateur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Afficher Nom" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Configuration LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Paramètres LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Serveur LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adresse du serveur LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port du serveur LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "Base LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtre LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Mot de passe LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Information de connexion" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Pas d'utilisateur local trouvé pour l’identifiant LDAP et n'est pas configuré pour en créer un" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Paramètre du processus" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Demander un chiffrement sécurisé via TLS/SSL lors de la connexion au serveur LDAP. Cette option nécessite un serveur avec STARTTLS activé, sinon toutes les tentatives d'authentification échoueront." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Information du serveur" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Configurer votre serveur LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Utilisateur modèle" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Le mot de passe du compte d'utilisateur sur le serveur LDAP qui est utilisé pour interroger l'annuaire." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Compte utilisateur sur le serveur LDAP qui est utilisé pour interroger l'annuaire. Laisser vide pour se connecter anonymement." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Utiliser TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Information utilisateur" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Utilisateur à copier lors de la création des nouveaux utilisateurs" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Utilisateurs" diff --git a/i18n/fr_BE.po b/i18n/fr_BE.po new file mode 100644 index 0000000..b9ace78 --- /dev/null +++ b/i18n/fr_BE.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2015-11-18 13:41+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n" +"Language: fr_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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Société" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Derniere fois mis à jour par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Dernière mis à jour le" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Utilisateurs" diff --git a/i18n/fr_CA.po b/i18n/fr_CA.po new file mode 100644 index 0000000..dd11e07 --- /dev/null +++ b/i18n/fr_CA.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Identifiant" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Séquence" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..f3e50e1 --- /dev/null +++ b/i18n/gl.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Compañía" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creado o" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..8c0dc95 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel , 2018 +# Dharmraj Jhala , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Dharmraj Jhala , 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "કંપનીઓ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "કંપની" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "બનાવનાર" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "પ્રદર્શન નામ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ઓળખ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "ક્રમ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "વપરાશકર્તાઓ" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..e55ab6c --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Yihya Hugirat , 2019 +# hed shefetr , 2019 +# דודי מלכה , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: דודי מלכה , 2019\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "חברות" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "חברה" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "הגדרות תצורה" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "נוצר על-ידי" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "הצג שם" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "תעודה מזהה" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על-ידי" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "רצף" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "משתמשים" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..700ee37 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Bole , 2019 +# Davor Bojkić , 2019 +# Vladimir Olujić , 2019 +# Đurđica Žarković , 2019 +# Tina Milas, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Tina Milas, 2019\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automatski kreiraj nove korisničke račune za korisnike koji se autoriziraju putem LDAP-a" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Tvrtke" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Tvrtka" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "LDAP postavke tvrtke" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Kreiraj korisnika" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfiguracija" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP Parametri" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP poslužitelj" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adresa LDAP servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port LDAP servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filtar" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP lozinka" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Podaci o prijavi" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Nije pronađen lokalni korisnik za LDAP prijavu i nije podešeno kreiranje novog" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parametri procesa" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekvenca" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informacije o poslužitelju" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Postavite LDAP poslužitelj" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Predložak korisnika" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Lozinka korisničkog računa na LDAP poslužitelju koja se koristi za upite prema poslužitelju." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Koristi TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Korisničke informacije" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Korisnik kojeg se kopira pri izradi novih korisnika" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..5dd8cdd --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# krnkris, 2019 +# gezza , 2019 +# Ákos Nagy , 2019 +# Tibor Kőnig , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Tibor Kőnig , 2019\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automatikusan létrehozott helyi felhasználói fiók az LDAP által azonosított új felhasználókhoz" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Vállalatok" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Vállalat" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurációs beállítások" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Felhasználó létrehozás" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Megjelenített név" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Azonosító" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfiguráció" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP paraméterek" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP szerver" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP szervercím" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP szerverport" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP alap" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP szűrő" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP jelszó" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Legutóbb frissítve" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Frissítve " + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Bejelentkezési információk" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Feldolgozási paraméter" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Biztonságos TLS/SSL kódolás igénylése az LDAP szerverhez való kapcsolódáshoz. Ez a lehetőség megkívánja szerveren a STARTTLS bekapcsolását, egyéb esetben az összes hitelesítés sikertelen lesz." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sorszám" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Szerver információk" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "LDAP Szerver beállítása" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Sablon felhasználó" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Az LDAP szerveren lévő felhasználói fiók jelszava mellyel eléri a könyvtárát." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Az LDAP szerveren lévő felhasználói fiók mellyel eléri a könyvtárát. Hagyja üresen névtelken bejelentkezéshez." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS (titkosítás) használata" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Felhasználói információk" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Új felhassználók létrehozásakor másolható felhasználó" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Felhasználók" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..22bcc0a --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Bonny Useful , 2017 +# Febrasari Almania , 2017 +# Wahyu Setiawan , 2017 +# oon arfiandwi (OonID) , 2017 +# William Surya Permana , 2017 +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Secara otomatis membuat akun pengguna lokal untuk pengguna baru yang melakukan autentikasi melalui LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Perusahaan" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Perusahaan" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Buat Pengguna" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Konfigurasi LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parameter LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Alamat Server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port Server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "base LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "binddn LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "filter LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "kata sandi LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informasi Login" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parameter Proses" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Meminta enkripsi TLS/SSL ketika mencoba terhubung ke server LDAP. Opsi ini membutuhkan server dengan fitur STARTTLS yang aktif, jika tidak, seluruh usaha autentikasi akan gagal." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Urutan" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informasi Server" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Atur server LDAP Anda" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Pengguna Template" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Kata sandi dari akun pengguna di server LDAP yang digunakan untuk melakukan query direktori." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Kata sandi dari akun pengguna di server LDAP yang digunakan untuk melakukan query direktori. Biarkan kosong jika terhubung secara anonim." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Menggunakan TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informasi Pengguna" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Data pengguna yang hendak disalin saat membuat pengguna baru" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Pengguna" diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..3b92008 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson , 2018 +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Bjorn Ingvarsson , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\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);\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Fyrirtæki" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Fyrirtæki" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Stofnað þann" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Auðkenni" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Runa" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Notendur" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..f4d8070 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Paolo Valier, 2019 +# Pietro Della Notte , 2019 +# Léonie Bouchat , 2019 +# mymage , 2019 +# Sergio Zanchetta , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Sergio Zanchetta , 2019\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/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" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Crea automaticamente un account utente locale per ogni autenticazione via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Aziende" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Azienda" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Configurazione LDAP azienda" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni configurazione" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Crea Utente" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Configurazione LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parametri LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Indirizzo server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Porta server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtro LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Password LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informazioni di accesso" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Nessun utente locale trovato per il login LDAP e non configurato per crearne uno" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parametro Processo" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Richiede criptazione sicura TLS/SSL quando si connette al server LDAP. Questa opzione richiede un server con abilitato STARTTLS, altrimenti tutti i tentativi di autenticazione falliranno." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sequenza" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informazioni server" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Crea il tuo server LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Utente modello" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "La password dell'account utente sul server LDAP che viene utilizzata per interrogare la directory." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Account utente sul server LDAP che viene usato per interrogare la directory. Lasciare vuoto per connettere anonimanente." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Usa TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informazioni utente" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Modello utente da copiare quando ne viene creato un nuovo" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Utenti" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..c3e7b59 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Yoshi Tashiro , 2018 +# Manami Hashi , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Manami Hashi , 2018\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "LDAPを使用して新しいユーザを認証するためのローカルユーザアカウントを自動的に作成します。" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "会社" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "会社" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "ユーザ作成" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "作成日" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP設定" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAPパラメータ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAPサーバアドレス" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAPサーバポート" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAPベース" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAPバインディング" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAPフィルタ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAPパスワード" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "ログイン情報" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "処理パラメータ" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "LDAPサーバへの接続時に安全なTLS/SSL暗号化を要求します。このオプションはサーバがSTARTTLSが使用可能であることを要求します。そうでない場合は全ての認証要求は失敗します。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "付番" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "サーバ情報" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "LDAPサーバの設定" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "テンプレートユーザ" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "LDAPサーバのユーザアカウントのパスワードはディレクトリへのクエリー使用されます。" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "LDAPサーバ上のユーザアカウントはディレクトリへのクエリーのために使用されます。匿名接続する場合は空のままにして下さい。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS を使用" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "ユーザ情報" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "新規ユーザ作成時にユーザにコピーされます。" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "ユーザ" diff --git a/i18n/ka.po b/i18n/ka.po new file mode 100644 index 0000000..960dafe --- /dev/null +++ b/i18n/ka.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"Language: ka\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "კომპანიები" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "კომპანია" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "იდენტიფიკატორი" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლებულია" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "მიმდევრობა" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/kab.po b/i18n/kab.po new file mode 100644 index 0000000..e374746 --- /dev/null +++ b/i18n/kab.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"Language: kab\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Tikebbaniyin" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Takebbwanit" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Asulay" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Aleqqem aneggaru di" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Agzum" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..6fdc591 --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Sengtha Chay , 2018 +# Chan Nath , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Chan Nath , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "ក្រុមហ៊ុន" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "ក្រុមហ៊ុន" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "លំដាប់" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "អ្នកប្រើ" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..f961310 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# 최재호 , 2018 +# Link Up링크업 , 2018 +# Linkup , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Linkup , 2018\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "LDAP를 통해 인증하는 새로운 사용자에 대해 로컬 사용자 계정을 자동으로 생성" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "회사들" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "회사" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "사용자 생성" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "작성일" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP 구성" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP 매개 변수" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP 서버 주소" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP 서버 포트" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP 기반" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP 바인딩" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP 필터" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP 암호" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "로그인 정보" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "과정 매개 변수" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "LDAP 서버 연결 시 보안 TLS/SSL 암호화 요청. 이 옵션은 STARTTLS가 활성화된 서버가 필요하며, 그렇지 않을 경우 인증 시도에 실패합니다." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "순차적" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "서버 정보" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "LDAP 서버 설정" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "사용자 서식" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "디렉터리를 조회할 때 사용되는 LDAP 서버 상의 사용자 계정 암호" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "디렉터리를 조회할 때 사용되는 LDAP 서버 상의 사용자 계정. 익명으로 연결하려면 비워두십시오." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS 사용" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "사용자 정보" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "새로운 사용자를 생성할 때 복사할 사용자" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "사용자" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..ce63187 --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..9e1481a --- /dev/null +++ b/i18n/lo.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"Language: lo\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "ບໍລິສັດ" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..49427c4 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# UAB "Draugiški sprendimai" , 2019 +# Anatolij, 2019 +# Silvija Butko , 2019 +# Audrius Palenskis , 2019 +# Monika Raciunaite , 2019 +# Linas Versada , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Linas Versada , 2019\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automatiškai kurti vietines vartotojų paskyras naujiems vartotojams, autentifikuojantiems per LDAP." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Įmonės" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Įmonė" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Įmonės LDAP konfigūracija" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Sukurti vartotoją" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfigūracija" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parametrai" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Serveris" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP serverio adresas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP serverio prievadas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP bazė" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filtras" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP slaptažodis" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Prisijungimo informacija" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "LDAP prisijungimui nerastas vietinis vartotojas ir jis nenustatytas jo sukūrimui" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Vykdymo parametrai" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Prašyti saugaus TLS/SSL šifravimo jungiantis prie LDAP serverio. Šiam pasirinkimui reikia serverio su aktyvuotu STARTTLS, kitaip autentifikacijos bandymai nepavyks." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Seka" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serverio informacija" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Nustatykite savo LDAP serverį" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Vartotojas pagal šabloną" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Vartotojo paskyros slaptažodis LDAP serveryje, skirtas direktorijos užklausoms." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Vartotojo paskyra LDAP serveryje, kuri naudojama direktorijos užklausoms. Norėdami jungtis anonimiškai, palikite tuščią." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Naudoti TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Vartotojo informacija" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Kopijuojamas vartotojas, kai kuriami nauji vartotojai" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Vartotojai" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..f5cd99f --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Uzņēmumi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Uzņēmums" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sērija" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/mk.po b/i18n/mk.po new file mode 100644 index 0000000..0abaf1a --- /dev/null +++ b/i18n/mk.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Компанија" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Секвенца" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/ml_IN.po b/i18n/ml_IN.po new file mode 100644 index 0000000..2a54f25 --- /dev/null +++ b/i18n/ml_IN.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2015-08-25 10:10+0000\n" +"Last-Translator: <>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/language/ml_IN/)\n" +"Language: ml_IN\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "രൂപപ്പെടുത്തിയത്" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "നിർമിച്ച ദിവസം" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..74b4071 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Baskhuu Lodoikhuu , 2019 +# Martin Trigaux, 2019 +# nurbakhit nurka , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: nurbakhit nurka , 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "LDAP ашиглан нэвтэрч орж буй шинэ хэрэглэгчдэд автоматаар хэрэглэгчийн бүртгэл үүсгэнэ." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Компаниуд" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Компани" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Компаны LDAP тохиргоо" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Хэрэглэгч үүсэх" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP Тохиргоо" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP параметрүүд" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP сервер" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP сервер хаяг" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP сервер порт" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP сан" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP шүүлтүүр" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP нууц үг" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Нэвтрэх мэдээлэл" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "LDAP нэвтрэх хандалтанд тохирох хэрэглэгч олдохгүй байгаа бөгөөд шинэ хэрэглэгч автоматаар үүсгэх тохиргоо хийгдээгүй байна" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Боловсруулах параметр" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "LDAP сервертэй холбогдоход TLS/SSL нууцлагдсан кодчлолыг ашиглана. Энэ сонголт нь STARTTLS зөвшөөрөгдсөн байхыг шаардах бөгөөд үгүй бол бүх нэвтрэх эрх шалгах ажиллагаа амжилтгүй болно." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Дугаарлалт" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Серверийн мэдээлэл" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Өөрийн LDAP серверийг тохируулах" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Загвар хэрэглэгч" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "LDAP сервер дээр хэрэглэгчийн жагсаалтыг авахад хэрэглэгдэх хэрэглэгчийн нууц үг." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "LDAP сервер дээр хэрэглэгчийн жагсаалтыг авахад хэрэглэгдэх хэрэглэгчийн нэр. Хоосон үлдээвэл anonymous байдлаар холбогдоно." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS-г хэрэглэх" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Хэрэглэгчийн мэдээлэл" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Шинэ хэрэглэгчдийг үүсгэх үед хуулах хэрэглэгч" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..355cd95 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Marius Stedjan , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Marius Stedjan , 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Opprett lokale brukerkonti automatisk for nye brukere som autentiserer via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Firma" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Opprett bruker" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP-oppsett" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP-parametre" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP-server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP-serveradresse" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP-serverport" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP-base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP-filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP-passord" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Innloggingsinformasjon" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Prosessparameter" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Be om sikker TLS/SSL-kryptering ved oppkobling mot LDAP-server. Dette valget krever en server med STARTTLS aktiv, ellers vil alle autentiseringsforsøk mislykkes." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serverinformasjon" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Sett opp LDAP-serveren din" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Malbruker" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Passordet til brukerkontoen på LDAP-serveren som brukes til å sende forespørsler til registeret." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Brukerkontoen på LDAP-serveren som brukes til å sende forespørsler til registeret. La stå tom for å koble til anonymt." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Bruk TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Brukerinformasjon" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Bruker til å kopiere når nye brukere opprettes" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Brukere" diff --git a/i18n/ne.po b/i18n/ne.po new file mode 100644 index 0000000..3974b59 --- /dev/null +++ b/i18n/ne.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"Language: ne\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..1af53fc --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Yenthe Van Ginneken , 2019 +# Wynand Tastenhoye , 2019 +# Erwin van der Ploeg , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Erwin van der Ploeg , 2019\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Maak automatisch locale gebruiker accounts voor nieuwe gebruikers welke inloggen via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Bedrijf" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Bedrijf LDAP configuratie" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Gebruiker aanmaken" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP instellingen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parameters" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP server adres" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP server poort" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP basis" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP wachtwoord" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Login informatie" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Geen lokale gebruiker gevonden voor LDAP login and niet geconfigureerd om één aan te maken" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Verwerk parameter" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Vraag beveiligde TLS / SSL-codering bij het verbinden met de LDAP-server. Deze optie vereist een server met ingeschakeld STARTTLS, anders zullen alle authenticatie pogingen mislukken." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Reeks" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serverinformatie" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Stel uw LDAP server in" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Sjabloon gebruiker" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Het wachtwoord van de gebruikersaccount op de LDAP-server die wordt gebruikt om de map te verkennen." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "De gebruikersaccount op de LDAP-server die wordt gebruikt om de map te verkennen. Laat leeg om verbinding anoniem." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS gebruiken" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Gebruikersinformatie" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Gebruiker welke wordt gekopieerd bij aanmaken nieuwe gebruikers" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Gebruikers" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..5ce820b --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,231 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Piotr Szlązak , 2019 +# Slawomir Adamus , 2019 +# Marcin Młynarczyk , 2019 +# Andrzej Donczew , 2019 +# Maja Stawicka , 2019 +# Maksym , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Maksym , 2019\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automatycznie tworzy konto lokalnego użytkownika dla nowych użytkowników uwierzytelnionych przez LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Firmy" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Firma" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Utwórz użytkownika" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Data utworzenia" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Konfiguracja LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parametry LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Serwer LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adres serwera LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port serwera LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "Baza LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "Konto dostępowe LDAP (bind)" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtr LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Hasło LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informacje o logowaniu" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parametr Procesu" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Wymaga bezpiecznego szyfrowania TLS/SSL podczas łączenia z serwerem LDAP. Ta opcja wymaga serwera z włączonym STARTTLS, inaczej wszystkie próby uwierzytelnienia zakończą się niepowodzeniem." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Numeracja" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informacja o serwerze" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Ustaw swój serwer LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Szablon użytkownika" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Hasło konta użytkownika na serwerze LDAP używane do zapytań katalogowych." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Konto użytkownika na serwerze LDAP, które jest używane do zapytań katalogowych. Pozostaw puste by połączyć się anonimowo." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Użyj TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informacje o Użytkowniku" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Użytkownik do skopiowania przy tworzeniu nowego użytkownika" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Użytkownicy" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..004f181 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..daa688e --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo , 2019 +# Martin Trigaux, 2019 +# Mateus Lopes , 2019 +# grazziano , 2019 +# André Augusto Firmino Cordeiro , 2019 +# Silmar , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Silmar , 2019\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/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" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Criar automaticamente contas de usuários locais para novos usuários autenticando via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Empresa" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Ajuste de configurações" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Criar Usuário" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Configuração LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Parâmetros LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Endereço do Servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Porta do Servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "Base LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Filtro LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Senha LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informação de Login" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parâmetro de Processo" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Solicite a conexão segura com encriptação TLS/SSL quando se conectar no servidor LDAP. Esta opção requer um servidor com STARTTLS habilitado, caso contrário a autenticação irá falhar" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Seqüência" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informação do Servidor" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Configure seu servidor LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Modelo de Usuário" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "A senha da conta de usuário no servidor LDAP que é usada para a busca no diretório" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "A conta do usuário no servidor LDAP que é usada para a busca no diretório, deixe em branco para conectar anonimamente" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Usar TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informações do usuário" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Usuário a ser copiado quando for criar novos usuários" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Usuários" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..e5eae30 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..0cc2c8f --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Vasiliy Korobatov , 2019 +# Aidos Kakimzhanov , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Aidos Kakimzhanov , 2019\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Автоматически создавать локальную учётную запись для новых пользователей прошедших проверку подлинности LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Компания" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Конфигурирование LDAP компании" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурации" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Создайте пользователя" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Создан" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Отображаемое Имя" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "Номер" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Конфигурация LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Параметры LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Сервер LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Адрес сервера LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Порт сервера LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP base" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Фильтр LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Пароль LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Информация входа" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Не найден локальный пользователь для входа в LDAP и не настроен для его создания" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Параметры подключения" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Запросить поддержку TLS/SSL шифрования при подключении к LDAP серверу. Для подключения требуется LDAP сервер с поддержкой параметра STARTTLS, в противном случае все попытки проверки подлинности потерпят неудачу." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Нумерация" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Сведения о сервере" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Настройте параметры поключения к LDAP серверу" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Шаблон пользователя" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Пароль пользователя LDAP, который будет использован при запросах в LDAP каталог." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Учетная запись пользователя LDAP, которая будет использована при запросах в LDAP каталог. Оставьте пустым для анонимного подключения." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Использовать TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Сведения о пользователе" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Шаблон локального пользователя для создания новых учетных записей" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Пользователи" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..44e0117 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Jaroslav Bosansky , 2018 +# gebri , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: gebri , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automaticky vytvorte lokálne používateľské účty pre nových používateľov autentifikovaných cez LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Spoločnost" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Vytvoriť Používateľa" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Zobrazovaný Názov" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfigurácia" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parametre" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP adresa servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP port servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP základ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP heslo" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Prihlasovacie údaje" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Proces parametrov" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Vyžiadajte zabezpečné TLS/SSL zašifrovanie pri pripájaní na LDAP server. Táto možnosť vyžaduje server s aktivovaným STARTTLS, inak všetky autorizačné pokusy zlyhajú" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Postupnosť" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Informácia servera" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Nastavte svoj LDAP server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Šablóna užívateľa" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Heslo účtu používateľa na LDAP serveri ktorý je používaný na dotaz adresára." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Účet používateľa na LDAP serveri ktorý je používaný na dotaz adresára. Nechajte prázdne pre anonymné pripojenie." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Použiť TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informácia používateľa" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Pouźívateľna skopírovanie pri vytváraní nových používateľov" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Používatelia" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..4d3f59a --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/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" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/sq.po b/i18n/sq.po new file mode 100644 index 0000000..fba9bc1 --- /dev/null +++ b/i18n/sq.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux , 2017\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"Language: sq\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Kompanitë" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Kompani" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Krijuar nga" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Krijuar me" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Emri i paraqitur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Modifikimi i fundit në" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Modifikuar per here te fundit nga" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Modifikuar per here te fundit me" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekuencë" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..4c99019 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,224 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Kompanija" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Informacije o Prijavi" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Niz" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Podaci o Serveru" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..e3d651c --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Nemanja Dragovic , 2017 +# Djordje Marjanovic , 2017 +# Martin Trigaux , 2017 +# Ljubisa Jovev , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Ljubisa Jovev , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Automatski kreiraj lokalne korisničke naloge za nove korisnike koji se autentifikuju preko LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Preduzeća" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Preduzeće" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Naziv za prikaz" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP konfiguracija" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP parametri" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Adresa LDAP servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Port LDAP servera" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP baza" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP filtar" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP lozinka" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Zadnja promena" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Promenio" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Vreme promene" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Login informacije" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Parametri procesa" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Zatraži sigurno TLS/SSL šifrovanje pri konektovanju na LDAP server. Ova opcija zahtjeva server sa omogućenim STARTTLS, jer će u suprotnom svi pokušaji autentifikacije propasti." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Prioritet" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Podaci o serveru" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Podesi svoj LDAP server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Templejt korisnik" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Lozinka korisničkog naloga na LDAP serveru koji će se koristiti za upite po direktorijumu." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Korisnički nalog na LDAP serveru koji će se koristiti za upite po direktorijumu. Ostavi prazno za anonimne konekcije." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Koristi TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Informacije o korisniku" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Korisnicki nalog koji će se kopirati kod kreiranja novih korisnika" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Korisnici" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..b57f231 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,227 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Kristoffer Grundström , 2018 +# Anders Wallenquist , 2018 +# Johan Bergquist , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-03-22 14:10+0000\n" +"Last-Translator: Johan Bergquist , 2018\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Skapa automatiskt lokala användarkonton för att nya användare som ska autentisera via LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Bolag" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Bolag" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP-konfiguration" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP-parametrar" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP serveradress" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP serverport" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP-bas" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP-binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP-filter" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP-lösenord" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Inloggningsuppgifter" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Processparameter" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Begär säker TLS / SSL-kryptering vid anslutning till LDAP-servern. Det här alternativet kräver en server med STARTTLS aktiverad, annars kommer alla autentiseringsförsök att misslyckas." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sekvens" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Serverinformation" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Ställ in din LDAP-server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Mallanvändare" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Lösenordet för användarkontot på LDAP-servern som används för att fråga katalogen." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Lösenordet för användarkontot på LDAP-servern som används för att fråga katalogen. Lämna blankt för att ansluta anonymt." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Använd TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Användarinformation" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Användare att kopiera när nya användare skapas." + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Användare" diff --git a/i18n/ta.po b/i18n/ta.po new file mode 100644 index 0000000..589ddc3 --- /dev/null +++ b/i18n/ta.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2016-02-11 10:14+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n" +"Language: ta\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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "நிறுவனங்கள்" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "நிறுவனம்" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "உருவாக்கியவர்" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "" +"உருவாக்கப்பட்ட \n" +"தேதி" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "காட்சி பெயர்" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "கடைசியாக திருத்திய" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "வரிசை" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "பயனர்கள்" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..3d3ecf2 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang , 2018 +# gsong , 2018 +# Somchart Jabsung , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Somchart Jabsung , 2018\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "บริษัท" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "บริษัท" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "สร้างผู้ใช้" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "รหัส" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "การตั้งค่า LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "ลำดับ" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "ผู้ใช้ต้นแบบ" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "ข้อมูลผู้ใช้" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "ผู้ใช้งาน" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..8e5e47c --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,229 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Levent Karakaş , 2019 +# Murat Kaplan , 2019 +# Umur Akın , 2019 +# Buket Şeker , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Buket Şeker , 2019\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "LDAP ile kimliği doğrulanan yeni kullanıcılar için otomatik yerel kullanıcı hesabı aç" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Şirketler" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Şirket" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Şirket LDAP yapılandırması" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigürasyon Ayarları" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Kullanıcı Oluştur" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP Düzenleme" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP Parametreleri" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP Server" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP Sunucu adresi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP Sunucu portu" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP tabanı" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP süzgeçi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP şifresi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Son Güncelleme" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Giriş bilgileri" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "LDAP girişi için yerel kullanıcı bulunamadı ve bir tane oluşturacak şekilde yapılandırılmadı" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "İşlem Parametresi" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "LDAP sunucuya bağlanırken güvenli TLS/SSL bağlantı iste. Bu opsiyon için sunucuda STARTTLS açık olmalıdır, aksi durumda bağlantı kurulamaz." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Sıra" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Sunucu Bilgileri" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "LDAP Sunucunuzu ayarlayın" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Şablon Kullanıcı" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "LDAP dizinini sorgulamak için gerekli kullanıcı şifresi." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "LDAP dizininde sorgulama yapmak için kullanılacak kullanıcı adı. Anonim giriş için boş bırakın." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "TLS kullan" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Kullanıcı Bilgileri" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Yeni kullanıcılar oluşturulurken kopyalanacak kullanıcı" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Kullanıcılar" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..e61cde8 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Alina Lisnenko , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Alina Lisnenko , 2019\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/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=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "Автоматично створювати локальних користувачів для нових користувачів аутентифікованих за допомогою LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Компанії" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Компанія" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "Налаштування компанії LDAP" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Створити користувача" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Створено на" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "Налаштування LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "Параметри LDAP" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "Сервер LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "Адреса серверу LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "Порт серверу LDAP " + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "База LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "Фільтр LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "Пароль LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Інформація входу" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "Не знайдено локального користувача для входу LDAP і немає налаштувань для його створення" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "Параметр процесу" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "Запит безпечного шифрування TLS/SSL під час підключення до сервера LDAP. Ця опція вимагає наявності сервера, увімкненого STARTTLS, інакше всі спроби автентифікації вийдуть з ладу." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Послідовність" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Інформація про сервер" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "Встановіть ваш сервер LDAP" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "Шаблон користувача" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "Пароль облікового запису користувача на сервері LDAP, який використовується для запиту каталогу." + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "Обліковий запис користувача на сервері LDAP, який використовується для запиту каталогу. Залиште порожнім, щоби з'єднатися анонімно." + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "Використання TLS" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "Інформація користувача" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "Копіювання користувача при створенні нових користувачів" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Користувачі" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..eb8d08b --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Nancy Momoland , 2019 +# Duy BQ , 2019 +# Chinh Chinh , 2019 +# Dung Nguyen Thi , 2019 +# Dao Nguyen , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: Dao Nguyen , 2019\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "Công ty" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "Công ty" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "Cấu hình" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "Người tạo" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "Cập nhật gần đây bởi" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "Cập nhật gần đây vào" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "Thông tin đăng nhập" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "Trình tự" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "Thông tin máy chủ" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "Người dùng" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..017c499 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,230 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Jeffery CHEN , 2019 +# liAnGjiA , 2019 +# guohuadeng , 2019 +# kun zhang , 2019 +# inspur qiuguodong , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: inspur qiuguodong , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "通过LDAP,为新用户自动创建本地用户账户。" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "公司" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "公司 LDAP 配置" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "创建用户" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP 配置" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP 参数" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP 服务器" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP 服务器地址" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP 服务器端口" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP 基节点" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP 绑定dn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP 筛选" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP 密码" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "最后更改日" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "更新时间" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "登录信息" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "没有找到用于LDAP登录的本地用户,也没有配置为创建" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "处理参数" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "当连接 LDAP 服务器时请求服务器使用安全的 TLS/SSL 加密。该选项需要服务器启用 STARTTLS,否则所有用户验证都将失败。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "单号规则" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "服务器信息" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "设置您的 LDAP 服务器" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "模版用户" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "LDAP 服务器上的用户帐号密码,用于查询该目录服务。" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "用于查询 LDAP 服务器目录的用户帐号。如果要匿名连接请保持为空。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "使用TLS传输层协议" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "用户信息" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "当创建新用户时复制的用户" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "用户" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..4e04aa8 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,228 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_ldap +# +# Translators: +# Martin Trigaux, 2019 +# Andy Cheng , 2019 +# sejun huang , 2019 +# 敬雲 林 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-07-12 07:50+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Last-Translator: 敬雲 林 , 2019\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/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: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_filter +msgid "" +" Filter used to look up user accounts in the LDAP database. It is an arbitrary LDAP filter in string representation. Any `%s` placeholder will be replaced by the login (identifier) provided by the user, the filter should contain at least one such placeholder.\n" +"\n" +" The filter must result in exactly one (1) result, otherwise the login will be considered invalid.\n" +"\n" +" Example (actual attributes depend on LDAP server and setup):\n" +"\n" +" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n" +"\n" +" or\n" +"\n" +" (|(mail=%s)(uid=%s))\n" +" " +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__create_user +msgid "Automatically create local user accounts for new users authenticating via LDAP" +msgstr "通過LDAP,為新使用者自動創建本地使用者帳戶。" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company +msgid "Company" +msgstr "公司" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "Company LDAP configuration" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user +msgid "Create User" +msgstr "創建使用者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date +msgid "Created on" +msgstr "建立於" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_base +msgid "DN of the user search scope: all descendants of this base will be searched for users." +msgstr "" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id +msgid "ID" +msgstr "ID" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_company_ldap_view_tree +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "LDAP Configuration" +msgstr "LDAP 配置" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company__ldaps +#: model:ir.model.fields,field_description:auth_ldap.field_res_config_settings__ldaps +msgid "LDAP Parameters" +msgstr "LDAP 參數" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form +msgid "LDAP Server" +msgstr "LDAP服務器" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server +msgid "LDAP Server address" +msgstr "LDAP 服務器地址" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port +msgid "LDAP Server port" +msgstr "LDAP 服務器端口" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base +msgid "LDAP base" +msgstr "LDAP 基礎" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "LDAP binddn" +msgstr "LDAP binddn" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter +msgid "LDAP filter" +msgstr "LDAP 篩選" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password +msgid "LDAP password" +msgstr "LDAP 密碼" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Login Information" +msgstr "登錄信息" + +#. module: auth_ldap +#: code:addons/auth_ldap/models/res_company_ldap.py:0 +#, python-format +msgid "No local user found for LDAP login and not configured to create one" +msgstr "沒有找到LDAP登錄的本地用戶,也沒有配置為創建一個用戶" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Process Parameter" +msgstr "處理參數" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Request secure TLS/SSL encryption when connecting to the LDAP server. This option requires a server with STARTTLS enabled, otherwise all authentication attempts will fail." +msgstr "當連接 LDAP 服務器時請求服務器使用安全的 TLS/SSL 加密。該選項需要服務器啟用 STARTTLS,否則所有使用者驗證都將失敗。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence +msgid "Sequence" +msgstr "序號" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "Server Information" +msgstr "伺服器信息" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "設定您的 LDAP 服務器" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user +msgid "Template User" +msgstr "模板使用者" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_password +msgid "The password of the user account on the LDAP server that is used to query the directory." +msgstr "LDAP 服務器上的使用者帳號密碼,用於查詢該目錄服務。" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__ldap_binddn +msgid "The user account on the LDAP server that is used to query the directory. Leave empty to connect anonymously." +msgstr "用於查詢 LDAP 服務器目錄的使用者帳號。如果要匿名連接請保持為空。" + +#. module: auth_ldap +#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls +msgid "Use TLS" +msgstr "使用TLS傳輸層套接字" + +#. module: auth_ldap +#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form +msgid "User Information" +msgstr "使用者信息" + +#. module: auth_ldap +#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user +msgid "User to copy when creating new users" +msgstr "當創建新使用者時複製的使用者" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "使用者" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..9e041b4 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,6 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import res_company +from . import res_company_ldap +from . import res_users +from . import res_config_settings \ No newline at end of file diff --git a/models/res_company.py b/models/res_company.py new file mode 100644 index 0000000..f6a519f --- /dev/null +++ b/models/res_company.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResCompany(models.Model): + _inherit = "res.company" + + ldaps = fields.One2many('res.company.ldap', 'company', string='LDAP Parameters', + copy=True, groups="base.group_system") diff --git a/models/res_company_ldap.py b/models/res_company_ldap.py new file mode 100644 index 0000000..4b75d9d --- /dev/null +++ b/models/res_company_ldap.py @@ -0,0 +1,246 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import ldap +import logging +from ldap.filter import filter_format + +from odoo import _, api, fields, models, tools +from odoo.exceptions import AccessDenied +from odoo.tools.misc import str2bool +from odoo.tools.pycompat import to_text + +_logger = logging.getLogger(__name__) + + +class CompanyLDAP(models.Model): + _name = 'res.company.ldap' + _description = 'Company LDAP configuration' + _order = 'sequence' + _rec_name = 'ldap_server' + + sequence = fields.Integer(default=10) + company = fields.Many2one('res.company', string='Company', required=True, ondelete='cascade') + ldap_server = fields.Char(string='LDAP Server address', required=True, default='127.0.0.1') + ldap_server_port = fields.Integer(string='LDAP Server port', required=True, default=389) + ldap_binddn = fields.Char('LDAP binddn', + help="The user account on the LDAP server that is used to query the directory. " + "Leave empty to connect anonymously.") + ldap_password = fields.Char(string='LDAP password', + help="The password of the user account on the LDAP server that is used to query the directory.") + ldap_filter = fields.Char(string='LDAP filter', required=True, help="""\ + Filter used to look up user accounts in the LDAP database. It is an\ + arbitrary LDAP filter in string representation. Any `%s` placeholder\ + will be replaced by the login (identifier) provided by the user, the filter\ + should contain at least one such placeholder. + + The filter must result in exactly one (1) result, otherwise the login will\ + be considered invalid. + + Example (actual attributes depend on LDAP server and setup): + + (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s)) + + or + + (|(mail=%s)(uid=%s)) + """) + ldap_base = fields.Char(string='LDAP base', required=True, help="DN of the user search scope: all descendants of this base will be searched for users.") + user = fields.Many2one('res.users', string='Template User', + help="User to copy when creating new users") + create_user = fields.Boolean(default=True, + help="Automatically create local user accounts for new users authenticating via LDAP") + ldap_tls = fields.Boolean(string='Use TLS', + help="Request secure TLS/SSL encryption when connecting to the LDAP server. " + "This option requires a server with STARTTLS enabled, " + "otherwise all authentication attempts will fail.") + + def _get_ldap_dicts(self): + """ + Retrieve res_company_ldap resources from the database in dictionary + format. + :return: ldap configurations + :rtype: list of dictionaries + """ + + res = self.sudo().search_read([('ldap_server', '!=', False)], [ + 'id', + 'company', + 'ldap_server', + 'ldap_server_port', + 'ldap_binddn', + 'ldap_password', + 'ldap_filter', + 'ldap_base', + 'user', + 'create_user', + 'ldap_tls' + ], order='sequence') + return res + + def _connect(self, conf): + """ + Connect to an LDAP server specified by an ldap + configuration dictionary. + + :param dict conf: LDAP configuration + :return: an LDAP object + """ + + uri = 'ldap://%s:%d' % (conf['ldap_server'], conf['ldap_server_port']) + + connection = ldap.initialize(uri) + ldap_chase_ref_disabled = self.env['ir.config_parameter'].sudo().get_param('auth_ldap.disable_chase_ref') + if str2bool(ldap_chase_ref_disabled): + connection.set_option(ldap.OPT_REFERRALS, ldap.OPT_OFF) + if conf['ldap_tls']: + connection.start_tls_s() + return connection + + def _get_entry(self, conf, login): + filter_tmpl = conf['ldap_filter'] + placeholders = filter_tmpl.count('%s') + if not placeholders: + _logger.warning("LDAP filter %r contains no placeholder ('%%s').", filter_tmpl) + + formatted_filter = filter_format(filter_tmpl, [login] * placeholders) + results = self._query(conf, formatted_filter) + + # Get rid of results (dn, attrs) without a dn + results = [entry for entry in results if entry[0]] + + dn, entry = False, False + if len(results) == 1: + dn, _ = entry = results[0] + return dn, entry + + def _authenticate(self, conf, login, password): + """ + Authenticate a user against the specified LDAP server. + + In order to prevent an unintended 'unauthenticated authentication', + which is an anonymous bind with a valid dn and a blank password, + check for empty passwords explicitely (:rfc:`4513#section-6.3.1`) + :param dict conf: LDAP configuration + :param login: username + :param password: Password for the LDAP user + :return: LDAP entry of authenticated user or False + :rtype: dictionary of attributes + """ + + if not password: + return False + + dn, entry = self._get_entry(conf, login) + if not dn: + return False + try: + conn = self._connect(conf) + conn.simple_bind_s(dn, to_text(password)) + conn.unbind() + except ldap.INVALID_CREDENTIALS: + return False + except ldap.LDAPError as e: + _logger.error('An LDAP exception occurred: %s', e) + return False + return entry + + def _query(self, conf, filter, retrieve_attributes=None): + """ + Query an LDAP server with the filter argument and scope subtree. + + Allow for all authentication methods of the simple authentication + method: + + - authenticated bind (non-empty binddn + valid password) + - anonymous bind (empty binddn + empty password) + - unauthenticated authentication (non-empty binddn + empty password) + + .. seealso:: + :rfc:`4513#section-5.1` - LDAP: Simple Authentication Method. + + :param dict conf: LDAP configuration + :param filter: valid LDAP filter + :param list retrieve_attributes: LDAP attributes to be retrieved. \ + If not specified, return all attributes. + :return: ldap entries + :rtype: list of tuples (dn, attrs) + + """ + + results = [] + try: + conn = self._connect(conf) + ldap_password = conf['ldap_password'] or '' + ldap_binddn = conf['ldap_binddn'] or '' + conn.simple_bind_s(to_text(ldap_binddn), to_text(ldap_password)) + results = conn.search_st(to_text(conf['ldap_base']), ldap.SCOPE_SUBTREE, filter, retrieve_attributes, timeout=60) + conn.unbind() + except ldap.INVALID_CREDENTIALS: + _logger.error('LDAP bind failed.') + except ldap.LDAPError as e: + _logger.error('An LDAP exception occurred: %s', e) + return results + + def _map_ldap_attributes(self, conf, login, ldap_entry): + """ + Compose values for a new resource of model res_users, + based upon the retrieved ldap entry and the LDAP settings. + :param dict conf: LDAP configuration + :param login: the new user's login + :param tuple ldap_entry: single LDAP result (dn, attrs) + :return: parameters for a new resource of model res_users + :rtype: dict + """ + + return { + 'name': tools.ustr(ldap_entry[1]['cn'][0]), + 'login': login, + 'company_id': conf['company'][0] + } + + def _get_or_create_user(self, conf, login, ldap_entry): + """ + Retrieve an active resource of model res_users with the specified + login. Create the user if it is not initially found. + + :param dict conf: LDAP configuration + :param login: the user's login + :param tuple ldap_entry: single LDAP result (dn, attrs) + :return: res_users id + :rtype: int + """ + login = tools.ustr(login.lower().strip()) + self.env.cr.execute("SELECT id, active FROM res_users WHERE lower(login)=%s", (login,)) + res = self.env.cr.fetchone() + if res: + if res[1]: + return res[0] + elif conf['create_user']: + _logger.debug("Creating new Odoo user \"%s\" from LDAP" % login) + values = self._map_ldap_attributes(conf, login, ldap_entry) + SudoUser = self.env['res.users'].sudo().with_context(no_reset_password=True) + if conf['user']: + values['active'] = True + return SudoUser.browse(conf['user'][0]).copy(default=values).id + else: + return SudoUser.create(values).id + + raise AccessDenied(_("No local user found for LDAP login and not configured to create one")) + + def _change_password(self, conf, login, old_passwd, new_passwd): + changed = False + dn, entry = self._get_entry(conf, login) + if not dn: + return False + try: + conn = self._connect(conf) + conn.simple_bind_s(dn, to_text(old_passwd)) + conn.passwd_s(dn, old_passwd, new_passwd) + changed = True + conn.unbind() + except ldap.INVALID_CREDENTIALS: + pass + except ldap.LDAPError as e: + _logger.error('An LDAP exception occurred: %s', e) + return changed diff --git a/models/res_config_settings.py b/models/res_config_settings.py new file mode 100644 index 0000000..4cc12be --- /dev/null +++ b/models/res_config_settings.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + ldaps = fields.One2many(related='company_id.ldaps', string="LDAP Parameters", readonly=False) diff --git a/models/res_users.py b/models/res_users.py new file mode 100644 index 0000000..59ea08a --- /dev/null +++ b/models/res_users.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.exceptions import AccessDenied + +from odoo import api, models, registry, SUPERUSER_ID + + +class Users(models.Model): + _inherit = "res.users" + + @classmethod + def _login(cls, db, login, password, user_agent_env): + try: + return super(Users, cls)._login(db, login, password, user_agent_env=user_agent_env) + except AccessDenied as e: + with registry(db).cursor() as cr: + cr.execute("SELECT id FROM res_users WHERE lower(login)=%s", (login,)) + res = cr.fetchone() + if res: + raise e + + env = api.Environment(cr, SUPERUSER_ID, {}) + Ldap = env['res.company.ldap'] + for conf in Ldap._get_ldap_dicts(): + entry = Ldap._authenticate(conf, login, password) + if entry: + return Ldap._get_or_create_user(conf, login, entry) + raise e + + def _check_credentials(self, password, env): + try: + return super(Users, self)._check_credentials(password, env) + except AccessDenied: + passwd_allowed = env['interactive'] or not self.env.user._rpc_api_keys_only() + if passwd_allowed and self.env.user.active: + Ldap = self.env['res.company.ldap'] + for conf in Ldap._get_ldap_dicts(): + if Ldap._authenticate(conf, self.env.user.login, password): + return + raise + + @api.model + def change_password(self, old_passwd, new_passwd): + if new_passwd: + Ldap = self.env['res.company.ldap'] + for conf in Ldap._get_ldap_dicts(): + changed = Ldap._change_password(conf, self.env.user.login, old_passwd, new_passwd) + if changed: + self.env.user._set_empty_password() + return True + return super(Users, self).change_password(old_passwd, new_passwd) + + def _set_empty_password(self): + self.flush_recordset(['password']) + self.env.cr.execute( + 'UPDATE res_users SET password=NULL WHERE id=%s', + (self.id,) + ) + self.invalidate_recordset(['password']) diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..f92813f --- /dev/null +++ b/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,res_company_ldap,model_res_company_ldap,base.group_system,1,1,1,1 diff --git a/views/ldap_installer_views.xml b/views/ldap_installer_views.xml new file mode 100644 index 0000000..7eb6c66 --- /dev/null +++ b/views/ldap_installer_views.xml @@ -0,0 +1,55 @@ + + + + + + res.company.ldap.form + res.company.ldap + +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + res.company.ldap.tree + res.company.ldap + + + + + + + + + + + + Setup your LDAP Server + res.company.ldap + tree,form + + +
diff --git a/views/res_config_settings_views.xml b/views/res_config_settings_views.xml new file mode 100644 index 0000000..c10a5fe --- /dev/null +++ b/views/res_config_settings_views.xml @@ -0,0 +1,16 @@ + + + + res.config.settings.view.form.inherit.auth.ldap + res.config.settings + + + +
+
+
+
+ + +