mirror of
https://github.com/bringout/oca-ocb-security.git
synced 2026-04-18 04:11:58 +02:00
Initial commit: Security packages
This commit is contained in:
commit
bb469e4763
1399 changed files with 278378 additions and 0 deletions
21
README.md
Normal file
21
README.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Security
|
||||
|
||||
This repository contains OCA OCB packages for security.
|
||||
|
||||
## Packages Included
|
||||
|
||||
- odoo-bringout-oca-ocb-auth_ldap
|
||||
- odoo-bringout-oca-ocb-auth_oauth
|
||||
- odoo-bringout-oca-ocb-auth_password_policy
|
||||
- odoo-bringout-oca-ocb-auth_password_policy_portal
|
||||
- odoo-bringout-oca-ocb-auth_password_policy_signup
|
||||
- odoo-bringout-oca-ocb-auth_signup
|
||||
- odoo-bringout-oca-ocb-auth_totp
|
||||
- odoo-bringout-oca-ocb-auth_totp_mail
|
||||
- odoo-bringout-oca-ocb-auth_totp_mail_enforce
|
||||
- odoo-bringout-oca-ocb-auth_totp_portal
|
||||
- odoo-bringout-oca-ocb-google_calendar
|
||||
- odoo-bringout-oca-ocb-google_gmail
|
||||
- odoo-bringout-oca-ocb-google_recaptcha
|
||||
- odoo-bringout-oca-ocb-microsoft_calendar
|
||||
- odoo-bringout-oca-ocb-microsoft_outlook
|
||||
45
odoo-bringout-oca-ocb-auth_ldap/README.md
Normal file
45
odoo-bringout-oca-ocb-auth_ldap/README.md
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# Authentication via LDAP
|
||||
|
||||
Odoo addon: auth_ldap
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-auth_ldap
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- base
|
||||
- base_setup
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Authentication via LDAP
|
||||
- **Version**: N/A
|
||||
- **Category**: Hidden/Tools
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `auth_ldap`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
66
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/README.rst
Normal file
66
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/README.rst
Normal file
|
|
@ -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
|
||||
3
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/__init__.py
Normal file
3
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
17
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/__manifest__.py
Normal file
17
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/__manifest__.py
Normal file
|
|
@ -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',
|
||||
}
|
||||
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/af.po
Normal file
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/af.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\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
|
||||
#. 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 "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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. 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 ""
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/am.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/am.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\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
|
||||
#. 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 ""
|
||||
260
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ar.po
Normal file
260
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ar.po
Normal file
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" عامل تصفية يُستخدم للبحث عن حسابات المستخدمين في قاعدة بيانات LDAP. إنه عامل تصفية LDAP عشوائي في تمثيل السلسلة. سوف يتم استبدال أي عنصر نائب `%s` بمعرف (تسجيل الدخول) المقدم من قِبَل المستخدِم، يجب أن يحتوي عامل التصفية على عنصر نائب واحد على الأقل.\n"
|
||||
"\n"
|
||||
" يجب أن ينتج عن عامل التصفية نتيجة واحدة (1) على الأقل، وإلا فلن يعد تسجيل الدخول صالحاً.\n"
|
||||
"\n"
|
||||
" مثال: (تعتمد الخواص الفعلية على خادم ونظام LDAP):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" أو\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"لم يتم العثور على مستخدم محلي لتسجيل الدخول 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: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 "قالب المستخدم لنسخه عند إنشاء مستخدمين جدد"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/auth_ldap.pot
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/auth_ldap.pot
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13: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____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
|
||||
#. 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 ""
|
||||
238
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/az.po
Normal file
238
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/az.po
Normal file
|
|
@ -0,0 +1,238 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 "Şirkətlər"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company
|
||||
msgid "Company"
|
||||
msgstr "Şirkə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 "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. 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 "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. 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 "Ekran 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 ""
|
||||
|
||||
#. 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 "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Məlumat daxil et"
|
||||
|
||||
#. 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 "Ardıcıllıq"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Server Information"
|
||||
msgstr "Server Haqqında Məlumat"
|
||||
|
||||
#. 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 "İstifadəçi"
|
||||
|
||||
#. 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 ""
|
||||
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/be.po
Normal file
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/be.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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 ""
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
251
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/bg.po
Normal file
251
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/bg.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Boris Stefanov <borkata@gmail.com>, 2023
|
||||
# Kamen Parishkov <kamen_2_01@abv.bg>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# KeyVillage, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: KeyVillage, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 Server port"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Изискайте 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: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 "Потребител, който да се копира при създаване на нови потребители"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/bs.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/bs.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13: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 "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 "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 "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 "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 "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 "Podaci o prijavi"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. 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"
|
||||
268
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ca.po
Normal file
268
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ca.po
Normal file
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2023
|
||||
# AncesLatino2004, 2023
|
||||
# Josep Anton Belchi, 2023
|
||||
# jabiri7, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Arnau Ros, 2023
|
||||
# Lluís Dalmau <lluis.dalmau@guifi.net>, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Óscar Fonseca <tecnico@pyming.com>, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filtre utilitzat per cercar comptes d'usuari a la base de dades LDAP. És un filtre LDAP arbitrari en la representació de cadena. Qualsevol marcador de posició \"%s\" serà substituït per l'inici de sessió (identificador) proporcionat per l'usuari, el filtre hauria de contenir almenys un marcador de posició.\n"
|
||||
"\n"
|
||||
"El filtre ha de donar com a resultat exactament un (1) resultat, en cas contrari, l'inici de sessió es considerarà no vàlid.\n"
|
||||
"\n"
|
||||
"Exemple (els atributs reals depenen del servidor LDAP i la configuració):\n"
|
||||
"\n"
|
||||
"(&(objectCategory=persona)(objectClass=usuari)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
"o\n"
|
||||
"\n"
|
||||
"(|(correu=%s)(uid=%s))"
|
||||
|
||||
#. 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àticament comptes d'usuari local per a nous usuaris autenticant-"
|
||||
"se mitjançant 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 "Empresa"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "Company LDAP configuration"
|
||||
msgstr "Configuració LDAP de l'empresa"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paràmetres de configuració"
|
||||
|
||||
#. 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 ""
|
||||
"DN de l'àmbit de cerca d'usuaris: es buscaran usuaris a tots els descendents"
|
||||
" d'aquesta base."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. 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 "Servidor LDAP "
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"No s'han trobat usuaris locals per accedir amb LDAP ni s'ha configurat per a"
|
||||
" crear-ne un. "
|
||||
|
||||
#. 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 xifrat 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 per "
|
||||
"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-se anònimament. "
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "Informació d'usuari"
|
||||
|
||||
#. 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 usuaris nous"
|
||||
251
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/cs.po
Normal file
251
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/cs.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# xlu <xlu@seznam.cz>, 2023
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jiří Podhorecký, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Jiří Podhorecký, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: auth_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
|
||||
#. 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 ""
|
||||
"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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
#. 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ů"
|
||||
246
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/da.po
Normal file
246
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/da.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
"DN for brugersøgningsomfanget: alle efterkommere af denne base vil blive "
|
||||
"søgt efter brugere."
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
#. 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"
|
||||
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/de.po
Normal file
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/de.po
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Friederike Fasterling-Nesselbosch, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
"Filter für die Suche nach Benutzerkonten in der LDAP-Datenbank. Es ist ein beliebiger LDAP-Filter in Zeichenkettendarstellung. Jeder `%s`-Platzhalter wird durch die vom Benutzer angegebene Anmeldung (Kennung) ersetzt, der Filter sollte mindestens einen solchen Platzhalter enthalten.\n"
|
||||
"\n"
|
||||
"Der Filter muss genau ein (1) Ergebnis liefern, andernfalls wird die Anmeldung als ungültig betrachtet.\n"
|
||||
"\n"
|
||||
"Beispiel (die tatsächlichen Attribute hängen vom LDAP-Server und der Einrichtung ab):\n"
|
||||
"\n"
|
||||
"(&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
"oder\n"
|
||||
"\n"
|
||||
"(|(mail=%s)(uid=%s))"
|
||||
|
||||
#. 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 ""
|
||||
"Erstellen Sie automatisch lokale Benutzerkonten für neue Benutzer, die sich "
|
||||
"mit LDAP authentifizieren"
|
||||
|
||||
#. 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 "LDAP-Konfiguration für Unternehmen"
|
||||
|
||||
#. 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 erstellen"
|
||||
|
||||
#. 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 ""
|
||||
"DN des Benutzersuchbereichs: alle untergeordneten Ebenen dieser Basis werden"
|
||||
" nach Benutzern durchsucht."
|
||||
|
||||
#. 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 "Port des LDAP-Servers"
|
||||
|
||||
#. 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-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-Passwort"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert 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 "Anmeldeinformation"
|
||||
|
||||
#. 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 ""
|
||||
"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 "Serverinformationen"
|
||||
|
||||
#. 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 Benutzerkontos auf dem LDAP-Server, das verwendet wird, um "
|
||||
"das Verzeichnis abzurufen."
|
||||
|
||||
#. 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 ""
|
||||
"Das Benutzerkonto auf dem LDAP-Server, das verwendet wird, um das "
|
||||
"Verzeichnis abzurufen. Leer lassen 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#. 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 ""
|
||||
"Zu kopierender Benutzer, der bei der Erstellung neuer Benutzer verwendet "
|
||||
"wird"
|
||||
212
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/el.po
Normal file
212
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/el.po
Normal file
|
|
@ -0,0 +1,212 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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,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:201
|
||||
#, 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 "Χρήστες"
|
||||
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/en_AU.po
Normal file
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
# 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: 2016-08-18 14:07+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_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.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,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.company_form_view
|
||||
#: 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_terms:ir.ui.view,arch_db:auth_ldap.company_form_view
|
||||
msgid "LDAP Parameters"
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/en_GB.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es.po
Normal file
267
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# marcescu, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Pedro M. Baeza <pedro.baeza@tecnativa.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Larissa Manderfeld, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2025\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
" Filtro que se usa para buscar cuentas de usuarios en a base de datos de LDAP. es un filtro LDAP arbitrario que se representa en strings. Cualquier marcador de posición `%s` se remplazará con el inicio de sesión (identificador) proporcionado por el usuario, el filtro debería contener al menos uno de esos marcadores de posición.\n"
|
||||
"\n"
|
||||
" El filtro debe arrojar al menos un (1) resultado, de lo contrario, el inicio de sesión se considerará inválido.\n"
|
||||
"\n"
|
||||
" Por ejemplo (los atributos actuales dependen del servidor y configuración de LDAP):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"DN del alcance de búsqueda del usuario: se buscarán usuarios en todos los "
|
||||
"descendientes de esta base."
|
||||
|
||||
#. 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 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 "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
|
||||
#. 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 ""
|
||||
"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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. 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"
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_BO.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CL.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CO.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CR.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_DO.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_EC.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_MX.po
Normal file
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
" El filtro utilizado para buscar cuentas de usuario en la base de datos LDAP. Es un filtro LDAP arbitrario en representación de una cadena. Cualquier marcador de posición `%s` se reemplazará con el nombre utilizado para iniciar sesión (identificador) que el usuario proporcionó. El filtro debe incluir al menos uno de estos marcadores de posición.\n"
|
||||
"\n"
|
||||
" El filtro solo debe proporcionar un (1) resultado, de lo contrario se considerará que el inicio de sesión no es válido.\n"
|
||||
"\n"
|
||||
" Ejemplo (los atributos reales dependen del servidor LDAP y la configuración):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 cuentas de usuario local en automático para los nuevos usuarios que se "
|
||||
"autentican con 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 "Configuración LDAP de la empresa"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes 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 ""
|
||||
"DN del alcance de búsqueda del usuario: se buscarán usuarios en todos los "
|
||||
"descendientes de esta base."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. 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 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 "Puerto de 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 "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 el"
|
||||
|
||||
#. 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 de inicio de sesión"
|
||||
|
||||
#. 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 ""
|
||||
"No se encontró un usuario local para el inicio de sesión LDAP y la opción "
|
||||
"para crear uno no está configurada."
|
||||
|
||||
#. 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 ""
|
||||
"Solicita una conexión segura TLS/SSL al conectarse al servidor LDAP. Esta "
|
||||
"opción requiere un servidor con STARTTLS habilitado o 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 del servidor"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
|
||||
msgid "Setup your LDAP Server"
|
||||
msgstr "Configura tu 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 se utiliza "
|
||||
"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 utilizada para consultar el "
|
||||
"directorio. Deja el campo vacío si quieres conectarte 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "Información del 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"
|
||||
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PA.po
Normal file
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PA.po
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
# 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: 2016-08-18 14:07+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_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.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,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.company_form_view
|
||||
#: 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_terms:ir.ui.view,arch_db:auth_ldap.company_form_view
|
||||
msgid "LDAP Parameters"
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PE.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PY.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_VE.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/et.po
Normal file
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/et.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# JanaAvalah, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Marek Pontus, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 "Seadistused"
|
||||
|
||||
#. 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 "Loodud (kelle poolt?)"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. 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 "Kuvatav 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"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. 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
|
||||
#. 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 "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 "Jada"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kasutaja"
|
||||
|
||||
#. 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."
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/eu.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/eu.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fa.po
Normal file
245
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fa.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Ali Reza Feizi Derakhshi, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# elaheh pourrezaie <elaheh.pourrezaie@hotmail.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2023
|
||||
# Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Yousef Shadmanesh <y.shadmanesh@gmail.com>, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_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 "تنظیمات 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 ""
|
||||
|
||||
#. 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 "فیلتر 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
|
||||
#. 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 ""
|
||||
"هیچ کاربر محلی برای لاگین 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 ""
|
||||
|
||||
#. 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 ""
|
||||
|
||||
#. 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 "استفاده از TLS"
|
||||
|
||||
#. 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 "کاربری که در هنگام ایجاد کاربر جدید کپی شود"
|
||||
268
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fi.po
Normal file
268
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fi.po
Normal file
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Topi Aura <topi@aurat.fi>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Suodatin, jota käytetään käyttäjätilien etsimiseen LDAP-tietokannasta. Tämä on mikälainen tahansa LDAP-suodatin merkkijonomuodossa. Mikä tahansa `%s`-tunniste korvataan käyttäjän antamalla kirjautumistunnuksella (tunnisteella), suodattimen on sisällettävä vähintään yksi tällainen tunniste.\n"
|
||||
"\n"
|
||||
" Suodattimen on annettava täsmälleen yksi (1) tulos, muutoin kirjautumista pidetään virheellisenä.\n"
|
||||
"\n"
|
||||
" Esimerkki (todelliset attribuutit riippuvat LDAP-palvelimesta ja asetuksista):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s)))\n"
|
||||
"\n"
|
||||
" tai\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Yrityksen LDAP-asetukset"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#. 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 ""
|
||||
"Käyttäjähakualueen DN: käyttäjiä etsitään kaikista tämän tietokannan "
|
||||
"jälkeläisistä."
|
||||
|
||||
#. 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 "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
|
||||
#. 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 ""
|
||||
"LDAP-kirjautumiseen ei löydetty paikallista käyttäjää, eikä uuden käyttäjän "
|
||||
"luonti ole käytössä"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
#. 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ä"
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fo.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fo.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr.po
Normal file
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr.po
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Cécile Collart <cco@odoo.com>, 2023
|
||||
# Thomas Charpentier, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
" Filtre utilisé pour rechercher des comptes utilisateurs dans la base de données LDAP. Il s'agit d'un filtre LDAP arbitraire sous forme de chaîne de caractères. Tout placeholder `%s` sera remplacé par le login (identifiant) fourni par l'utilisateur, le filtre doit contenir au moins un tel placeholder.\n"
|
||||
"\n"
|
||||
"Le filtre doit donner exactement un (1) résultat, sinon le login sera considéré comme non valide.\n"
|
||||
"\n"
|
||||
"Exemple (les attributs réels dépendent du serveur LDAP et de la configuration) :\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Configuration LDAP de la compagnie"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. 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 ""
|
||||
"DN de la portée de la recherche d'utilisateur : tous les descendants de "
|
||||
"cette base seront recherchés pour les utilisateurs"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. 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 "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 "Mis à jour le"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Informations de connexion"
|
||||
|
||||
#. 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 ""
|
||||
"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 "Informations 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#. 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"
|
||||
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr_BE.po
Normal file
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
# 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: 2016-08-18 14:07+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_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.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,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.company_form_view
|
||||
#: 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_terms:ir.ui.view,arch_db:auth_ldap.company_form_view
|
||||
msgid "LDAP Parameters"
|
||||
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
|
||||
#: 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"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr_CA.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/gl.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/gl.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/gu.po
Normal file
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/gu.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 "Config Settings"
|
||||
|
||||
#. 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
|
||||
#. 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 "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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "User"
|
||||
|
||||
#. 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 ""
|
||||
241
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/he.po
Normal file
241
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/he.po
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Lilach Gilliam <lilach.gilliam@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 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 "חברות"
|
||||
|
||||
#. 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
|
||||
#. 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 "שימוש ב-TLS"
|
||||
|
||||
#. 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 "המשתמש לכתב כשמתווספים משתמשים חדשים"
|
||||
239
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hi.po
Normal file
239
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hi.po
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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
|
||||
#. 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 ""
|
||||
246
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hr.po
Normal file
246
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hr.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Davor Bojkić <davor.bojkic@storm.hr>, 2023
|
||||
# Tina Milas, 2023
|
||||
# Bole <bole@dajmi5.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: auth_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
|
||||
#. 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 ""
|
||||
"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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. 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"
|
||||
254
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hu.po
Normal file
254
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hu.po
Normal file
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2023
|
||||
# krnkris, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
"Helyi felhasználói fiók automatikus létrehozása az LDAP-on keresztül belépő "
|
||||
"ú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 "Vállalati LDAP konfiguráció"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Beállítások módosítása"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Új felhasználó"
|
||||
|
||||
#. 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 szerver címe"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_server_port
|
||||
msgid "LDAP Server port"
|
||||
msgstr "LDAP szerver portja"
|
||||
|
||||
#. 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 "Módosítva"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Nincs helyi felhasználói fiók az LDAP bejelentkezéshez és nincs beállítva, "
|
||||
"hogy hozzon létre egyet"
|
||||
|
||||
#. 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 az opció megköveteli a szerveren a STARTTLS "
|
||||
"bekapcsolását, különben 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évtelen 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Felhasználó"
|
||||
|
||||
#. 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ó"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hy.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/hy.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\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
|
||||
#. 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 ""
|
||||
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/id.po
Normal file
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/id.po
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2023
|
||||
# Febrasari Almania <febrasari.almania@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Abe Manyo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2024\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filter digunakan untuk mencari akun user di database LDAP. Filter ini adalah filter LDAP yang arbitrary di string representation. Placeholder `%s` apapun akan diganti dengan login (pengidentifikasi) yang disediakan oleh user, filter harus memiliki setidaknya satu placeholder seperti itu.\n"
|
||||
"\n"
|
||||
" Filter harus memiliki persis satu (1) hasil, bila tidak login akan dianggap tidak valid.\n"
|
||||
"\n"
|
||||
" Contoh (atribut asli tergantung pada server dan setup LDAP):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" atau\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Konfigurasi LDAP Perusahaan"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Pengaturan Konfigurasi"
|
||||
|
||||
#. 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 ""
|
||||
"DN dari cakupan pencarian user: semua turunan dari base ini akan dicari "
|
||||
"untuk user."
|
||||
|
||||
#. 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 "Server LDAP"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Tidak ada user lokal yang ditemukan untuk login LDAP dan tidak dikonfigurasi"
|
||||
" untuk membuat user"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
#. 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"
|
||||
238
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/is.po
Normal file
238
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/is.po
Normal file
|
|
@ -0,0 +1,238 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: auth_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 "Stillingarvalkostir"
|
||||
|
||||
#. 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 "Búið til þ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 "Birtingarnafn"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (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 "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
|
||||
#. 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 "Röð"
|
||||
|
||||
#. 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 "Notandi"
|
||||
|
||||
#. 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 ""
|
||||
264
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/it.po
Normal file
264
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/it.po
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
" Filtro utilizzato per cercare gli account degli utenti nel database LDAP. È un filtro LDAP arbitrario nella rappresentazione delle stringhe. Ogni segnaposto `%s` verrà sostituito dall'accesso (identificatore) fornito dall'utente, il filtro dovrebbe contenere almeno uno dei segnaposto.\n"
|
||||
"\n"
|
||||
" Il filtro deve comparire in un solo (1) risultato, altrimenti l'accesso verrà considerato non valido.\n"
|
||||
"\n"
|
||||
" Esempio (gli attributi attuali dipendono dal server LDAP e dalla configurazione):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 in modo automatico account di utenti locali per i nuovi utenti che si "
|
||||
"autenticano 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 di configurazione"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Creazione 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 "Data creazione"
|
||||
|
||||
#. 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 ""
|
||||
"DN dell'ambito di ricerca dell'utente: tutti i discendenti di questa base "
|
||||
"verranno cercati per gli utenti."
|
||||
|
||||
#. 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 "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 "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
|
||||
#. 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 ""
|
||||
"Nessun utente locale trovato per l'accesso 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 di elaborazione"
|
||||
|
||||
#. 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 cifratura sicura TLS/SSL per la connessione al server LDAP. Per "
|
||||
"questa opzione è necessario un server con STARTTLS abilitato, diversamente "
|
||||
"tutti i tentativi di autenticazione non avranno successo."
|
||||
|
||||
#. 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 "Imposta 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 ""
|
||||
"Password dell'account utente sul server LDAP, 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, utilizzato per interrogare la directory. "
|
||||
"Lasciare vuoto per connettersi in modo anonimo."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls
|
||||
msgid "Use TLS"
|
||||
msgstr "Utilizzare TLS"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
#. 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 "Utente da copiare quando ne vengono creati di nuovi."
|
||||
253
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ja.po
Normal file
253
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ja.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Andy Yiu, 2023
|
||||
# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Junko Augias, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Junko Augias, 2024\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" LDAPデータベース内のユーザアカウントを検索するために使用されるフィルタ。これは文字列表現の任意のLDAPフィルタです。任意の `%s` プレースホルダはユーザによって提供されたログイン (識別子) に置き換えられます。\n"
|
||||
"\n"
|
||||
" フィルタの結果は正確に1つでなければならず、そうでなければログインは無効とみなされます。\n"
|
||||
"\n"
|
||||
" 例(実際の属性はLDAPサーバとセットアップに依存):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" または\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "ユーザ検索スコープのDN:このベースの全ての子孫がユーザ用に検索されます。"
|
||||
|
||||
#. 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バインディング"
|
||||
|
||||
#. 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
|
||||
#. 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 "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: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 "新規ユーザ作成時にユーザにコピーされます。"
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ka.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ka.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/kab.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/kab.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/km.po
Normal file
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/km.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 អាសយដ្ឋានម៉ាស៊ីនបម្រើ 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
|
||||
#. 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 ""
|
||||
"មិនមានអ្នកប្រើមូលដ្ឋានបានរកឃើញសម្រាប់ចូល 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: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 "អ្នកប្រើដើម្បីចម្លងនៅពេលបង្កើតអ្នកប្រើថ្មី"
|
||||
255
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ko.po
Normal file
255
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ko.po
Normal file
|
|
@ -0,0 +1,255 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Linkup <link-up@naver.com>, 2023
|
||||
# Sarah Park, 2023
|
||||
# JH CHOI <hwangtog@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" LDAP 데이터베이스에서 사용자 계정을 조회하는 데 사용되는 필터입니다. 해당 LDAP는 문자열로 표현되는 임의의 필터입니다. 모든 `%s`자리 표시자는 사용자가 제공한 로그인(식별자)로 대체되며, 필터에는 이러한 자리 표시자가 하나 이상 포함되어 있어야 합니다.\n"
|
||||
"\n"
|
||||
" 필터는 정확히 하나(1)의 결과를 반환해야 하며, 그렇지 않으면 로그인은 유효하지 않은 것으로 간주됩니다.\n"
|
||||
"\n"
|
||||
" 예 (실제 속성은 LDAP 서버 및 설정에 따라 다름):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" 또는\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "사용자 검색 범위의 DN: 이 기준에 맞는 모든 하위 항목에서 사용자를 검색합니다."
|
||||
|
||||
#. 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 바인딩"
|
||||
|
||||
#. 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
|
||||
#. 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 "LDAP 로그인에 대한 로컬 사용자를 찾을 수 없으며 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: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 "새로운 사용자를 생성할 때 복사할 사용자"
|
||||
208
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lb.po
Normal file
208
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lb.po
Normal file
|
|
@ -0,0 +1,208 @@
|
|||
# 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: 2019-08-12 11:32+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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,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:202
|
||||
#, 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 ""
|
||||
240
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lo.po
Normal file
240
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lo.po
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# sackda chanthasombath, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\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
|
||||
#. 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 ""
|
||||
255
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lt.po
Normal file
255
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lt.po
Normal file
|
|
@ -0,0 +1,255 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Arunas V. <arunas@devoro.com>, 2023
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2023
|
||||
# Monika Raciunaite <monika.raciunaite@gmail.com>, 2023
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2023
|
||||
# Anatolij, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_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
|
||||
#. 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 ""
|
||||
"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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Vartotojas"
|
||||
|
||||
#. 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"
|
||||
240
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lv.po
Normal file
240
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/lv.po
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Anzelika Adejanova, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: auth_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 "Konfigurācijas uzstādījumi"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Izveidot lietotāju"
|
||||
|
||||
#. 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 "Attēlotais nosaukums"
|
||||
|
||||
#. 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 "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunināja"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunināts"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Pieteikšanās informācijas"
|
||||
|
||||
#. 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 "Sekvence"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Server Information"
|
||||
msgstr "Servera informācija"
|
||||
|
||||
#. 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 "Lietotājs"
|
||||
|
||||
#. 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 ""
|
||||
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/mk.po
Normal file
205
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/mk.po
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\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_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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ml.po
Normal file
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ml.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\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
|
||||
#. 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 ""
|
||||
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ml_IN.po
Normal file
195
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ml_IN.po
Normal file
|
|
@ -0,0 +1,195 @@
|
|||
# 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: 2016-08-18 14:07+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_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.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,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.company_form_view
|
||||
#: 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_terms:ir.ui.view,arch_db:auth_ldap.company_form_view
|
||||
msgid "LDAP Parameters"
|
||||
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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/mn.po
Normal file
250
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/mn.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2023
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Batmunkh Ganbat <batmunkh2522@gmail.com>, 2023\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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
|
||||
#. 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 ""
|
||||
"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: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 "Шинэ хэрэглэгчдийг үүсгэх үед хуулах хэрэглэгч"
|
||||
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ms.po
Normal file
237
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ms.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2023\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\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 "Syarikat"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company
|
||||
msgid "Company"
|
||||
msgstr "Syarikat"
|
||||
|
||||
#. 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 "Tetapan Konfigurasi"
|
||||
|
||||
#. 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 "Dicipta oleh"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta 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 paparan"
|
||||
|
||||
#. 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 "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. 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 "Urutan"
|
||||
|
||||
#. 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 "pengguna"
|
||||
|
||||
#. 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 ""
|
||||
248
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/nb.po
Normal file
248
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/nb.po
Normal file
|
|
@ -0,0 +1,248 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Thor Arne Hvidsten <thor.arne.hvidsten@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Marius Stedjan <marius@stedjan.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 "Innstillinger"
|
||||
|
||||
#. 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 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 "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
|
||||
#. 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 "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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
#. 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"
|
||||
202
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ne.po
Normal file
202
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ne.po
Normal file
|
|
@ -0,0 +1,202 @@
|
|||
# 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: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. 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.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,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
|
||||
#: 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 ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr ""
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
264
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/nl.po
Normal file
264
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/nl.po
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# 04a2cd0fd6ee22172c36ea91f27a38c5_60041bf, 2023
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filter dat wordt gebruikt om gebruikersaccounts op te zoeken in de LDAP-database. Het is een willekeurig LDAP-filter in tekenreeksweergave. Elke `%s` tijdelijke aanduiding wordt vervangen door de login (identifier) die door de gebruiker is opgegeven, het filter moet ten minste één dergelijke tijdelijke aanduiding bevatten.\n"
|
||||
"\n"
|
||||
" Het filter moet precies één (1) resultaat opleveren, anders wordt de login als ongeldig beschouwd.\n"
|
||||
"\n"
|
||||
" Voorbeeld (werkelijke kenmerken zijn afhankelijk van LDAP-server en setup):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
"of\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))"
|
||||
|
||||
#. 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 ""
|
||||
"Definitie van het zoekbereik van de gebruiker: alle afstammelingen van deze "
|
||||
"basis worden doorzocht op gebruikers."
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"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 "Verwerkingsparameter"
|
||||
|
||||
#. 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 "Server informatie"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
|
||||
msgid "Setup your LDAP Server"
|
||||
msgstr "Stel je 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. 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"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/no.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/no.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\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
|
||||
#. 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 ""
|
||||
271
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pl.po
Normal file
271
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pl.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Slawomir Adamus <melthalion@gmail.com>, 2023
|
||||
# Piotr Strębski <strebski@gmail.com>, 2023
|
||||
# Maja Stawicka <mjstwck@wp.pl>, 2023
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2023
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2023
|
||||
# Maksym <ms@myodoo.pl>, 2023
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2023
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2023
|
||||
# Marta Wacławek, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2024\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filtr użyty do wyszukania kont użytkownika w bazie danych LDAP. Jest to dowolny filtr LDAP w postaci ciągu znaków. Każdy placeholder `%s` zostanie zastąpiony przez login (identyfikator) podany przez użytkownika. Filtr powinien zawierać przynajmniej jeden taki placeholder.\n"
|
||||
"\n"
|
||||
" Filtr musi zwrócić dokładnie jeden (1) wynik, w przeciwnym razie login zostanie uznany za nieprawidłowy.\n"
|
||||
"\n"
|
||||
" Przykład (faktyczne atrybuty zależą od serwera LDAP i konfiguracji):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Konfiguracja LDAP firmy"
|
||||
|
||||
#. 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 "Utworzył(a)"
|
||||
|
||||
#. 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 ""
|
||||
"DN zakresu wyszukiwania użytkowników: wszystkie elementy potomne tej bazy "
|
||||
"będą przeszukiwane pod kątem użytkowników."
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Nie znaleziono lokalnego użytkownika do logowania LDAP i nie skonfigurowano "
|
||||
"go do utworzenia"
|
||||
|
||||
#. 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 "Sekwencja"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
#. 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"
|
||||
267
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pt.po
Normal file
267
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pt.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2023
|
||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
||||
# Amazonian Shop, 2023
|
||||
# Daniel Reis, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Daniel Reis, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
" Filtro usado para encontrar contas de utilizador na base de dados LDAP. É um filtro LDAP arbitrário representado em forma de texto. Qualquer ocorrência de `%s` será substituída pelo login (identificador) do utilizador, o filtro deve conter pelo menos uma ocorrêcnia deste elemento a ser substituído.\n"
|
||||
"\n"
|
||||
" O filtro tem que retornar exatamente um (1) resultado, caso contrário o login será considerado inválido.\n"
|
||||
"\n"
|
||||
" Exemplo (atributos reais dependem do serviço LDAP usado e sua confoguração):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" ou\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 as contas de utilizador locais para os novos "
|
||||
"utilizadores se autenticarem 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 "Configuração LDAP da empresa"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Definições de Configuração"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Criar Utilizador"
|
||||
|
||||
#. 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 ""
|
||||
"DN para a busca ao utilizador: todos os descendentes desta base irão ser "
|
||||
"pesquisados para encontrar utilizadores"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome de Exibição"
|
||||
|
||||
#. 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 de 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 de LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.res_config_settings_view_form
|
||||
msgid "LDAP Server"
|
||||
msgstr "Servidor de LDAP"
|
||||
|
||||
#. 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 de 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 de LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_base
|
||||
msgid "LDAP base"
|
||||
msgstr "Base de 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 de LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password
|
||||
msgid "LDAP password"
|
||||
msgstr "Palavra-passe de 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 da Sessão"
|
||||
|
||||
#. 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 ""
|
||||
"Nenhum utilizador local encontrado para a conexão LDAP e não existe "
|
||||
"configuração para criar um"
|
||||
|
||||
#. 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 encriptação TLS/SSL segura quando ligar ao servidor de LDAP. "
|
||||
"Esta opção requer um servidor com STARTTLS ativado, caso contrário, todas as"
|
||||
" tentativas de autenticação falharão."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequê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 o seu Servidor de LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user
|
||||
msgid "Template User"
|
||||
msgstr "Modelo de Utilizador"
|
||||
|
||||
#. 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 palavra-passe da conta do utilizador no servidor de LDAP que é utilizada "
|
||||
"para consultar a diretoria."
|
||||
|
||||
#. 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 utilizador no servidor de LDAP que é utilizada para consultar a "
|
||||
"diretoria. Deixe em branco para ligar anonimamente."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls
|
||||
msgid "Use TLS"
|
||||
msgstr "Utilizar TLS"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "Informação do Utilizador"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user
|
||||
msgid "User to copy when creating new users"
|
||||
msgstr "Utilizador a copiar quando criar novos utilizadores"
|
||||
262
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pt_BR.po
Normal file
262
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,262 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Maitê Dietze, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2024\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 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 ""
|
||||
"Filtro usado para localizar contas de usuário na base de dados LDAP. É um filtro LDAP arbitrário em representação de strings. Marcadores de posição `%s` serão substituídos pelo login (identificador) fornecido pelo usuário; o filtro deve conter pelo menos um desses marcadores.\n"
|
||||
"\n"
|
||||
"O filtro deve ter exatamente um (1) resultado, caso contrário, o login será considerado inválido.\n"
|
||||
"\n"
|
||||
"Exemplo (os atributos reais dependem do servidor LDAP e da configuração):\n"
|
||||
"\n"
|
||||
"(&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
"or\n"
|
||||
"\n"
|
||||
"(|(mail=%s)(uid=%s))"
|
||||
|
||||
#. 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 "Configuração LDAP da empresa"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "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 ""
|
||||
"DN do escopo de pesquisa do usuário: todos os secundários dessa base serão "
|
||||
"pesquisados em busca de usuários."
|
||||
|
||||
#. 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 "Servidor LDAP"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Nenhum usuário local encontrado para o login LDAP e não configurado para "
|
||||
"criar um"
|
||||
|
||||
#. 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 "Sequê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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
#. 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"
|
||||
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ro.po
Normal file
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ro.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filtru folosit pentru a căuta conturi de utilizator în baza de date LDAP. Este un filtru LDAP arbitrar sub formă de șir de caractere. Orice placeholder `%s` va fi înlocuit cu login-ul (identificatorul) furnizat de utilizator, filtrul trebuie să conțină cel puțin un astfel de placeholder.\n"
|
||||
"\n"
|
||||
" Filtrul trebuie să returneze exact un (1) rezultat, altfel autentificarea va fi considerată invalidă.\n"
|
||||
"\n"
|
||||
" Exemplu (atributele reale depind de serverul și configurația LDAP):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" sau\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"Creeaza automat conturi de utilizatori locali pentru utilizatorii care se "
|
||||
"autentifica prin intermediul LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Companii"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "Company LDAP configuration"
|
||||
msgstr "Configurare Companie LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Setări de configurare"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Creați utilizator"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat î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 ""
|
||||
"DN al domeniului de căutare a utilizatorilor: toți descendenții acestei baze"
|
||||
" vor fi căutați pentru utilizatori."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. 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 "Configurare 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 "Adresa 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 "Baza LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_binddn
|
||||
msgid "LDAP binddn"
|
||||
msgstr "LDAP sistem binddn"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_filter
|
||||
msgid "LDAP filter"
|
||||
msgstr "Filtru LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_password
|
||||
msgid "LDAP password"
|
||||
msgstr "Parola LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare pe"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Informații de autentificare"
|
||||
|
||||
#. 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 ""
|
||||
"Niciun utilizator local nu a fost găsit pentru autentificarea LDAP și nu a "
|
||||
"fost configurat pentru a crea unul"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Process Parameter"
|
||||
msgstr "Parametri proces"
|
||||
|
||||
#. 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 ""
|
||||
"Solicită criptare TLS/SSL pentru conexiunea la serverul LDAP. Această "
|
||||
"opțiune necesită un server cu STARTTLS activat, altfel toate încercările de "
|
||||
"autentificare vor eșua."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secvență"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Server Information"
|
||||
msgstr "Informații Server"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
|
||||
msgid "Setup your LDAP Server"
|
||||
msgstr "Configurati-va Serverul d-voastra LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user
|
||||
msgid "Template User"
|
||||
msgstr "Șablon utilizator"
|
||||
|
||||
#. 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 ""
|
||||
"Parola contului de utilizator al serverului LDAP folosit pentru a căuta în "
|
||||
"director."
|
||||
|
||||
#. 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 ""
|
||||
"Contul de utilizator al serverului LDAP care este folosit pentru a căuta în "
|
||||
"director. Lăsați necompletat pentru a vă conecta anonim."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls
|
||||
msgid "Use TLS"
|
||||
msgstr "Folosește TLS"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilizator"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "Informații utilizator"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user
|
||||
msgid "User to copy when creating new users"
|
||||
msgstr "Utilizator de copiat atunci când se creează utilizatori noi"
|
||||
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ru.po
Normal file
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ru.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2023
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2023
|
||||
# Alena Vlasova, 2023
|
||||
# Aidos Kakimzhanov <aidos.kakimzhan@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: ILMIR <karamov@it-projects.info>, 2023\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
"Фильтр, используемый для поиска учетных записей пользователей в базе данных LDAP. Это произвольный фильтр LDAP в строковом представлении. Любой `%s` заполнитель будет заменен логином (идентификатором), предоставленным пользователем, фильтр должен содержать хотя бы один такой заполнитель. \n"
|
||||
"\n"
|
||||
" Фильтр должен дать ровно один (1) результат, иначе логин будет считаться недействительным. \n"
|
||||
"\n"
|
||||
" Пример (фактические атрибуты зависят от сервера LDAP и настроек): \n"
|
||||
"\n"
|
||||
"(&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" или\n"
|
||||
" (|(mail=%s)(uid=%s))"
|
||||
|
||||
#. 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 ""
|
||||
"DN области поиска пользователей: все потомки этой базы будут искать "
|
||||
"пользователей. "
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Не найден локальный пользователь для входа в 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: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 "Шаблон локального пользователя для создания новых учетных записей"
|
||||
245
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sk.po
Normal file
245
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sk.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: auth_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čnosť"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "Company LDAP configuration"
|
||||
msgstr "Konfigurácia firemnej LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Nastavenia konfigurácie"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Vytvoriť uží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 "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 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á úprava"
|
||||
|
||||
#. 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
|
||||
#. 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 "Nenašiel sa lokálny užívateľ pre LDAP login, nedá sa vytvoriť nový"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Užívateľ"
|
||||
|
||||
#. 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"
|
||||
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sl.po
Normal file
266
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sl.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Tadej Lupšina <tadej@hbs.si>, 2023
|
||||
# laznikd <laznik@mentis.si>, 2023
|
||||
# Grega Vavtar <grega@hbs.si>, 2023
|
||||
# Boris Kodelja <boris@hbs.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filter, ki se uporablja za iskanje uporabniških računov v zbirki podatkov LDAP. Gre za poljuben filter LDAP v nizovni predstavitvi. Kateri koli `%s` nadomestno besedilo bo nadomeščeno s prijavnim imenom (identifikatorjem), ki ga je navedel uporabnik, filter mora vsebovati vsaj eno takšno nadomestno besedilo.\n"
|
||||
" Filter mora vrniti natanko en (1) rezultat, sicer bo prijava neveljavna.\n"
|
||||
"\n"
|
||||
" Primer (dejanski atributi so odvisni od strežnika LDAP in nastavitev):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" ali\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"Samodejno ustvari lokalne uporabniške račune za nove uporabnike, ki se "
|
||||
"overjajo preko LDAP"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Podjetja"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__company
|
||||
msgid "Company"
|
||||
msgstr "Podjetje"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "Company LDAP configuration"
|
||||
msgstr "Konfiguracija LDAP podjetja"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Uredi nastavitve"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Ustvari uporabnika"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. 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 ""
|
||||
"DN obsega iskanja uporabnika: vsi potomci te baze bodo preiskani za "
|
||||
"uporabnike."
|
||||
|
||||
#. 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 "LDAP Configuration"
|
||||
|
||||
#. 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 address"
|
||||
|
||||
#. 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 geslo"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Prijavni podatki"
|
||||
|
||||
#. 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 ""
|
||||
"Za prijavo LDAP ni bil najden noben lokalni uporabnik in ni bil konfiguriran"
|
||||
" za ustvarjanje uporabnika."
|
||||
|
||||
#. 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 ""
|
||||
"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."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Zaporedje"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Server Information"
|
||||
msgstr "Podatki o strežniku"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
|
||||
msgid "Setup your LDAP Server"
|
||||
msgstr "Setup your LDAP Server"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user
|
||||
msgid "Template User"
|
||||
msgstr "Predloga uporabnika"
|
||||
|
||||
#. 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 "Geslo 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 ""
|
||||
"The user account on the LDAP server that is used to query the directory. "
|
||||
"Leave empty to connect anonymously."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls
|
||||
msgid "Use TLS"
|
||||
msgstr "Use TLS"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "Informacije o uporabniku"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user
|
||||
msgid "User to copy when creating new users"
|
||||
msgstr "Uporabnik, ki se kopira ob ustvarjanju novih uporabnikov"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sq.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sq.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\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
|
||||
#. 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 ""
|
||||
239
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sr.po
Normal file
239
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sr.po
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Milan Bojovic <mbojovic@outlook.com>, 2023\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: auth_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 "Preduzeća"
|
||||
|
||||
#. 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 "Podešavanje konfiguracije"
|
||||
|
||||
#. 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/la"
|
||||
|
||||
#. 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 "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 ""
|
||||
|
||||
#. 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 "Poslednja izmena dana"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednji ažurirao/la"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednji put ažurirano dana"
|
||||
|
||||
#. 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
|
||||
#. 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 "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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
#. 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 ""
|
||||
217
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sr@latin.po
Normal file
217
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,217 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# Djordje Marjanovic <djordje_m@yahoo.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Ljubisa Jovev <ljubisa.jovev@gmail.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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_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.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,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
|
||||
#: 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"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_company_ldap
|
||||
msgid "res.company.ldap"
|
||||
msgstr "res.company.ldap"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "res.config.settings"
|
||||
msgstr ""
|
||||
269
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sv.po
Normal file
269
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sv.po
Normal file
|
|
@ -0,0 +1,269 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Johan Bergquist <johan.bergquist@netip.se>, 2023
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2023
|
||||
# Simon S, 2023
|
||||
# Robin Calvin, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Lasse L, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Lasse L, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Filter som används för att söka upp användarkonton i LDAP-databasen. Det är ett godtyckligt LDAP-filter i strängrepresentation. Alla `%s` platshållare kommer att ersättas av inloggningen (identifieraren) som tillhandahålls av användaren, filtret bör innehålla minst en sådan platshållare.\n"
|
||||
"\n"
|
||||
" Filtret måste resultera i exakt ett (1) resultat, annars kommer inloggningen att anses vara ogiltig.\n"
|
||||
"\n"
|
||||
" Exempel (aktuella attribut beror på LDAP-server och inställningar):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" eller\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Företagets LDAP-konfiguration"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__create_user
|
||||
msgid "Create User"
|
||||
msgstr "Skapa användare"
|
||||
|
||||
#. 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 ""
|
||||
"DN för användarsökningens omfattning: alla ättlingar till denna bas kommer "
|
||||
"att sökas efter användare."
|
||||
|
||||
#. 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 "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 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 ändrad den"
|
||||
|
||||
#. 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 den"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Login Information"
|
||||
msgstr "Inloggningsuppgifter"
|
||||
|
||||
#. 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 ""
|
||||
"Ingen lokal användare hittades för LDAP-inloggning och det är inte "
|
||||
"konfigurerat att skapa en"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
#. 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"
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sw.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/sw.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\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
|
||||
#. 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 ""
|
||||
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ta.po
Normal file
233
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/ta.po
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\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
|
||||
#. 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 ""
|
||||
260
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/th.po
Normal file
260
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/th.po
Normal file
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Amin Cheloh <amincheloh@gmail.com>, 2023
|
||||
# Wichanon Jamwutthipreecha, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Wichanon Jamwutthipreecha, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" ตัวกรองที่ใช้เพื่อค้นหาบัญชีผู้ใช้ในฐานข้อมูล LDAP ซึ่งเป็นตัวกรอง LDAP โดยพลการในการแทนค่าสตริง `%s` ตัวอย่างข้อความจะถูกแทนที่ด้วยการเข้าสู่ระบบ (ตัวระบุ) ที่ผู้ใช้ให้มา ตัวกรองควรมีอย่างน้อยหนึ่งตัวอย่างข้อความดังกล่าว\n"
|
||||
"\n"
|
||||
" ตัวกรองต้องส่งผลเพียงหนึ่ง (1) ผลลัพธ์ มิฉะนั้น การเข้าสู่ระบบจะถือว่าไม่ถูกต้อง\n"
|
||||
"\n"
|
||||
" ตัวอย่าง (แอ็ตทริบิวต์จริงขึ้นอยู่กับเซิร์ฟเวอร์ LDAP และการตั้งค่า):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" or\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"DN ของขอบเขตการค้นหาผู้ใช้: descendants ทั้งหมดของ base นี้จะถูกค้นหาผู้ใช้"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"ไม่พบผู้ใช้ท้องถิ่นในเการเข้าสู่ระบบ 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: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 "ผู้ใช้ที่จะคัดลอกเมื่อสร้างผู้ใช้ใหม่"
|
||||
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/tr.po
Normal file
265
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/tr.po
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Levent Karakaş <levent@mektup.at>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" LDAP veritabanındaki kullanıcı hesaplarını aramak için kullanılan filtre. Dize gösteriminde rasgele bir LDAP filtresidir. Herhangi bir '%s' yer tutucusu, kullanıcı tarafından sağlanan oturum açma (tanımlayıcı) ile değiştirilecektir, filtre bu tür en az bir yer tutucu içermelidir.\n"
|
||||
"\n"
|
||||
"Filtre tam olarak bir (1) sonuçla sonuçlanmalıdır, aksi takdirde oturum açma geçersiz sayılır.\n"
|
||||
"\n"
|
||||
"Örnek (gerçek özellikler LDAP sunucusuna ve kuruluma bağlıdır):\n"
|
||||
"\n"
|
||||
"(&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
"veya\n"
|
||||
"\n"
|
||||
"(| (mail=%s) (uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "Yapılandırma 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 ""
|
||||
"Kullanıcı arama kapsamının DN'si: bu tabanın tüm alt öğeleri kullanıcılar "
|
||||
"için aranacaktır."
|
||||
|
||||
#. 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 Düzenleme"
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"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ıralama"
|
||||
|
||||
#. 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:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
||||
|
||||
#. 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ı"
|
||||
263
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/uk.po
Normal file
263
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/uk.po
Normal file
|
|
@ -0,0 +1,263 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" Фільтр, що використовується для пошуку облікових записів користувачів у базі даних LDAP. Це довільний фільтр LDAP у рядковому представленні. Будь-який заповнювач `%s` буде замінено на логін (ідентифікатор), наданий користувачем, фільтр повинен містити принаймні один такий заповнювач.\n"
|
||||
"\n"
|
||||
" Фільтр повинен дати рівно один (1) результат, інакше логін вважатиметься недійсним.\n"
|
||||
"\n"
|
||||
" Приклад (фактичні атрибути залежать від сервера LDAP та налаштування):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" або\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"DN області пошуку користувачів: усі нащадки цієї бази будуть у пошуку для "
|
||||
"користувачів."
|
||||
|
||||
#. 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
|
||||
#. 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 ""
|
||||
"Не знайдено локального користувача для входу 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: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 "Копіювання користувача при створенні нових користувачів"
|
||||
263
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/vi.po
Normal file
263
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/vi.po
Normal file
|
|
@ -0,0 +1,263 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Nancy Momoland <thanh.np2502@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Trần Hà <tranthuha13590@gmail.com>, 2023
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
"Bộ lọc dùng để tra cứu tài khoản người dùng trong cơ sở dữ liệu LDAP. Đây là một bộ lọc LDAP tùy ý trong biểu diễn chuỗi. Mọi phần giữ chỗ `%s` sẽ được thay thế bằng thông tin đăng nhập (mã định danh) do người dùng cung cấp, bộ lọc phải chứa ít nhất một phần giữ chỗ như vậy.\n"
|
||||
"\n"
|
||||
"Bộ lọc phải cho ra chính xác một (1) kết quả, nếu không thông tin đăng nhập sẽ bị coi là không hợp lệ.\n"
|
||||
"\n"
|
||||
"Ví dụ (thuộc tính thực tế phụ thuộc vào thiết lập và máy chủ LDAP):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" hoặc\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 ""
|
||||
"Automatically create local user accounts for new users authenticating via "
|
||||
"LDAP"
|
||||
|
||||
#. 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 "Company LDAP configuration"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Cài đặt 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 "Được tạo và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 ""
|
||||
"DN của phạm vi tìm kiếm người dùng: tất cả các phần phụ thuộc của cơ sở này "
|
||||
"sẽ được tìm kiếm cho người dùng."
|
||||
|
||||
#. 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 "LDAP Configuration"
|
||||
|
||||
#. 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 address"
|
||||
|
||||
#. 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 password"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Chỉnh sửa lần cuối vào"
|
||||
|
||||
#. 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 lần cuối 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 lần cuối 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
|
||||
#. 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 "No local user found for LDAP login and not configured to create one"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "Process Parameter"
|
||||
msgstr "Process 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 ""
|
||||
"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."
|
||||
|
||||
#. 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 "Setup your LDAP Server"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__user
|
||||
msgid "Template User"
|
||||
msgstr "Template User"
|
||||
|
||||
#. 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 ""
|
||||
"The password of the user account on the LDAP server that is used to query "
|
||||
"the 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 ""
|
||||
"The user account on the LDAP server that is used to query the directory. "
|
||||
"Leave empty to connect anonymously."
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,field_description:auth_ldap.field_res_company_ldap__ldap_tls
|
||||
msgid "Use TLS"
|
||||
msgstr "Use TLS"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model,name:auth_ldap.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model_terms:ir.ui.view,arch_db:auth_ldap.view_ldap_installer_form
|
||||
msgid "User Information"
|
||||
msgstr "User Information"
|
||||
|
||||
#. module: auth_ldap
|
||||
#: model:ir.model.fields,help:auth_ldap.field_res_company_ldap__user
|
||||
msgid "User to copy when creating new users"
|
||||
msgstr "User to copy when creating new users"
|
||||
252
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/zh_CN.po
Normal file
252
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
# Emily Jia <eji@odoo.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" 用来在LDAP数据库中查找用户账户的过滤器。它是一个任意的LDAP过滤器,用字符串表示。任何`%s`占位符将被用户提供的登录(标识符)所取代,过滤器应该至少包含一个这样的占位符。\n"
|
||||
"\n"
|
||||
" 过滤器的结果必须正好是一(1)个,否则登录将被认为是无效的。\n"
|
||||
"\n"
|
||||
" 示例(实际属性取决于LDAP服务器和设置)。\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s)\n"
|
||||
"\n"
|
||||
" 或\n"
|
||||
"\n"
|
||||
" (|(mail=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "用户搜索范围的DN:这个基地的所有后代都将被搜索到用户。"
|
||||
|
||||
#. 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
|
||||
#. 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 "没有找到用于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: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 "当创建新用户时复制的用户"
|
||||
252
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/zh_TW.po
Normal file
252
odoo-bringout-oca-ocb-auth_ldap/auth_ldap/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auth_ldap
|
||||
#
|
||||
# Translators:
|
||||
# Tony Ng, 2023
|
||||
# Benson <Benson.Dr@Gmail.com>, 2023
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2023-07-13 13:02+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: auth_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 ""
|
||||
" 用於在 LDAP 數據庫中查找用戶帳戶的過濾器. 它是字符串表示形式的任意 LDAP 過濾器. 任何“%s”佔位符都將被使用者提供的登錄名稱(標識符)替換,過濾器應至少包含一個這樣的佔位符.\n"
|
||||
"\n"
|
||||
" 過濾器必須產生一 (1) 個結果,否則登錄將被視為無效。\n"
|
||||
"\n"
|
||||
" 範例(實際屬性取決於 LDAP 伺服器和設置定):\n"
|
||||
"\n"
|
||||
" (&(objectCategory=person)(objectClass=user)(sAMAccountName=%s))\n"
|
||||
"\n"
|
||||
" 或是\n"
|
||||
"\n"
|
||||
" (|(郵件=%s)(uid=%s))\n"
|
||||
" "
|
||||
|
||||
#. 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 "使用者搜索範圍的DN: 將搜索基於此範圍的所有使用者."
|
||||
|
||||
#. 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
|
||||
#. 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 "沒有找到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: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 "當建立新使用者時複製的使用者"
|
||||
|
|
@ -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
|
||||
|
|
@ -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")
|
||||
|
|
@ -0,0 +1,266 @@
|
|||
# -*- 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 LDAPWrapper:
|
||||
def __init__(self, obj):
|
||||
self.__obj__ = obj
|
||||
|
||||
def passwd_s(self, *args, **kwargs):
|
||||
self.__obj__.passwd_s(*args, **kwargs)
|
||||
|
||||
def search_st(self, *args, **kwargs):
|
||||
return self.__obj__.search_st(*args, **kwargs)
|
||||
|
||||
def simple_bind_s(self, *args, **kwargs):
|
||||
self.__obj__.simple_bind_s(*args, **kwargs)
|
||||
|
||||
def unbind(self, *args, **kwargs):
|
||||
self.__obj__.unbind(*args, **kwargs)
|
||||
|
||||
|
||||
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
|
||||
"""
|
||||
|
||||
ldaps = self.sudo().search([('ldap_server', '!=', False)], order='sequence')
|
||||
res = ldaps.read([
|
||||
'id',
|
||||
'company',
|
||||
'ldap_server',
|
||||
'ldap_server_port',
|
||||
'ldap_binddn',
|
||||
'ldap_password',
|
||||
'ldap_filter',
|
||||
'ldap_base',
|
||||
'user',
|
||||
'create_user',
|
||||
'ldap_tls'
|
||||
])
|
||||
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 LDAPWrapper(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
|
||||
"""
|
||||
data = {
|
||||
'name': tools.ustr(ldap_entry[1]['cn'][0]),
|
||||
'login': login,
|
||||
'company_id': conf['company'][0]
|
||||
}
|
||||
if tools.single_email_re.match(login):
|
||||
data['email'] = login
|
||||
return data
|
||||
|
||||
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
|
||||
|
|
@ -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)
|
||||
|
|
@ -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'])
|
||||
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
from . import test_auth_ldap
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
import re
|
||||
import requests
|
||||
from unittest.mock import patch
|
||||
|
||||
import odoo
|
||||
from odoo.modules.registry import Registry, DummyRLock
|
||||
from odoo.tests import HOST
|
||||
from odoo.tests.common import BaseCase, tagged, get_db_name
|
||||
|
||||
|
||||
@tagged("-standard", "-at_install", "post_install", "database_breaking")
|
||||
class TestAuthLDAP(BaseCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.registry = odoo.registry(get_db_name())
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.patch(Registry, "_lock", DummyRLock()) # prevent deadlock (see #161438)
|
||||
self.opener = requests.Session()
|
||||
|
||||
def remove_ldap_user():
|
||||
with self.registry.cursor() as cr:
|
||||
cr.execute("DELETE FROM res_users WHERE login = 'test_ldap_user'")
|
||||
self.addCleanup(remove_ldap_user)
|
||||
|
||||
def test_auth_ldap(self):
|
||||
def _get_ldap_dicts(*args, **kwargs):
|
||||
return [
|
||||
{
|
||||
"id": 1,
|
||||
"company": (1, "YourCompany"),
|
||||
"ldap_server": "127.0.0.1",
|
||||
"ldap_server_port": 389,
|
||||
"ldap_binddn": "cn=admin,dc=odoo,dc=com",
|
||||
"ldap_password": "admin",
|
||||
"ldap_filter": "cn=%s",
|
||||
"ldap_base": "dc=odoo,dc=com",
|
||||
"user": (6, "Marc Demo"),
|
||||
"create_user": True,
|
||||
"ldap_tls": False,
|
||||
}
|
||||
]
|
||||
|
||||
def _authenticate(*args, **kwargs):
|
||||
return (
|
||||
"cn=test_ldap_user,dc=odoo,dc=com",
|
||||
{
|
||||
"sn": [b"test_ldap_user"],
|
||||
"cn": [b"test_ldap_user"],
|
||||
"objectClass": [b"inetOrgPerson", b"top"],
|
||||
"userPassword": [b"{MD5}CY9rzUYh03PK3k6DJie09g=="],
|
||||
},
|
||||
)
|
||||
|
||||
with self.registry.cursor() as cr:
|
||||
cr.execute("SELECT id FROM res_users WHERE login = 'test_ldap_user'")
|
||||
self.assertFalse(cr.rowcount, "User should not be present")
|
||||
|
||||
body = self.opener.get(
|
||||
f"http://{HOST}:{odoo.tools.config['http_port']}/web/login"
|
||||
).text
|
||||
csrf = re.search(r'csrf_token: "(\w*?)"', body).group(1)
|
||||
|
||||
with patch.object(self.registry["res.company.ldap"], "_get_ldap_dicts", _get_ldap_dicts),\
|
||||
patch.object(self.registry["res.company.ldap"], "_authenticate", _authenticate):
|
||||
res = self.opener.post(
|
||||
f"http://{HOST}:{odoo.tools.config['http_port']}/web/login",
|
||||
data={
|
||||
"login": "test_ldap_user",
|
||||
"password": "test",
|
||||
"csrf_token": csrf,
|
||||
},
|
||||
)
|
||||
res.raise_for_status()
|
||||
|
||||
session = odoo.http.root.session_store.get(res.cookies["session_id"])
|
||||
self.assertEqual(
|
||||
session.sid, res.cookies["session_id"], "A session must exist at this point")
|
||||
|
||||
with self.registry.cursor() as cr:
|
||||
cr.execute(
|
||||
"SELECT id FROM res_users WHERE login = %s and id = %s",
|
||||
("test_ldap_user", session.uid))
|
||||
self.assertTrue(cr.rowcount, "User should be present")
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<!-- ldap installer Form View -->
|
||||
<record id="view_ldap_installer_form" model="ir.ui.view">
|
||||
<field name="name">res.company.ldap.form</field>
|
||||
<field name="model">res.company.ldap</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="LDAP Configuration">
|
||||
<group>
|
||||
<field name="company"/>
|
||||
<newline/>
|
||||
<group string="Server Information">
|
||||
<field name="ldap_server"/>
|
||||
<field name="ldap_server_port"/>
|
||||
<field name="ldap_tls"/>
|
||||
</group>
|
||||
<group string="Login Information">
|
||||
<field name="ldap_binddn"/>
|
||||
<field name="ldap_password" password="True"/>
|
||||
</group>
|
||||
<group string="Process Parameter">
|
||||
<field name="ldap_base"/>
|
||||
<field name="ldap_filter"/>
|
||||
<field name="sequence"/>
|
||||
</group>
|
||||
<group string="User Information">
|
||||
<field name="create_user"/>
|
||||
<field name="user"/>
|
||||
</group>
|
||||
</group>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="res_company_ldap_view_tree" model="ir.ui.view">
|
||||
<field name="name">res.company.ldap.tree</field>
|
||||
<field name="model">res.company.ldap</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="LDAP Configuration">
|
||||
<field name="company"/>
|
||||
<field name="ldap_server"/>
|
||||
<field name="ldap_server_port"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- ldap installer action -->
|
||||
<record id="action_ldap_installer" model="ir.actions.act_window">
|
||||
<field name="name">Setup your LDAP Server</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">res.company.ldap</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.auth.ldap</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<div name='auth_ldap_right_pane' position="inside">
|
||||
<div class="mt8" attrs="{'invisible': [('module_auth_ldap','=',False)]}">
|
||||
<button type="action" name="%(auth_ldap.action_ldap_installer)d" string="LDAP Server" icon="fa-arrow-right" class="btn-link"/>
|
||||
</div>
|
||||
</div>
|
||||
<div id="auth_ldap_warning" position="replace"/>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
32
odoo-bringout-oca-ocb-auth_ldap/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-auth_ldap/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Auth_ldap Module - auth_ldap
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-auth_ldap/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-auth_ldap/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for auth_ldap. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-auth_ldap/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-auth_ldap/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue