Initial commit: OCA Server Auth packages (29 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:06 +02:00
commit 3ed80311c4
1325 changed files with 127292 additions and 0 deletions

View file

@ -0,0 +1,46 @@
# LDAP Populate
Odoo addon: users_ldap_populate
## Installation
```bash
pip install odoo-bringout-oca-server-auth-users_ldap_populate
```
## Dependencies
This addon depends on:
- auth_ldap
## Manifest Information
- **Name**: LDAP Populate
- **Version**: 16.0.1.0.2
- **Category**: Tools
- **License**: AGPL-3
- **Installable**: True
## Source
Based on [OCA/server-auth](https://github.com/OCA/server-auth) branch 16.0, addon `users_ldap_populate`.
## License
This package maintains the original AGPL-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
- Reports: doc/REPORTS.md
- Security: doc/SECURITY.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

View 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 Users_ldap_populate Module - users_ldap_populate
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.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for users_ldap_populate. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,5 @@
# Dependencies
This addon depends on:
- [auth_ldap](../../odoo-bringout-oca-ocb-auth_ldap)

View file

@ -0,0 +1,4 @@
# FAQ
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
- Q: How to enable? A: Start server with --addon users_ldap_populate or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-server-auth-users_ldap_populate"
# or
uv pip install odoo-bringout-oca-server-auth-users_ldap_populate"
```

View file

@ -0,0 +1,12 @@
# Models
Detected core models and extensions in users_ldap_populate.
```mermaid
classDiagram
class res_company_ldap
```
Notes
- Classes show model technical names; fields omitted for brevity.
- Items listed under _inherit are extensions of existing models.

View file

@ -0,0 +1,6 @@
# Overview
Packaged Odoo addon: users_ldap_populate. Provides features documented in upstream Odoo 16 under this addon.
- Source: OCA/OCB 16.0, addon users_ldap_populate
- License: LGPL-3

View file

@ -0,0 +1,3 @@
# Reports
This module does not define custom reports.

View file

@ -0,0 +1,34 @@
# Security
Access control and security definitions in users_ldap_populate.
## Access Control Lists (ACLs)
Model access permissions defined in:
- **[ir.model.access.csv](../users_ldap_populate/security/ir.model.access.csv)**
- 1 model access rules
## Record Rules
Row-level security rules defined in:
```mermaid
graph TB
subgraph "Security Layers"
A[Users] --> B[Groups]
B --> C[Access Control Lists]
C --> D[Models]
B --> E[Record Rules]
E --> F[Individual Records]
end
```
Security files overview:
- **[ir.model.access.csv](../users_ldap_populate/security/ir.model.access.csv)**
- Model access permissions (CRUD rights)
Notes
- Access Control Lists define which groups can access which models
- Record Rules provide row-level security (filter records by user/group)
- Security groups organize users and define permission sets
- All security is enforced at the ORM level by Odoo

View file

@ -0,0 +1,5 @@
# Troubleshooting
- Ensure Python and Odoo environment matches repo guidance.
- Check database connectivity and logs if startup fails.
- Validate that dependent addons listed in DEPENDENCIES.md are installed.

View file

@ -0,0 +1,7 @@
# Usage
Start Odoo including this addon (from repo root):
```bash
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon users_ldap_populate
```

View file

@ -0,0 +1,3 @@
# Wizards
This module does not include UI wizards.

View file

@ -0,0 +1,42 @@
[project]
name = "odoo-bringout-oca-server-auth-users_ldap_populate"
version = "16.0.0"
description = "LDAP Populate - Odoo addon"
authors = [
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
]
dependencies = [
"odoo-bringout-oca-server-auth-auth_ldap>=16.0.0",
"requests>=2.25.1"
]
readme = "README.md"
requires-python = ">= 3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
]
[project.urls]
homepage = "https://github.com/bringout/0"
repository = "https://github.com/bringout/0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["users_ldap_populate"]
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.4.1",
]

View file

@ -0,0 +1,111 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association
=============
LDAP Populate
=============
..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:89e9c60cc8c9ff89c12c0550eff2e6267a92b8fb4628cbd9adb2bf6f23a0aedc
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github
:target: https://github.com/OCA/server-auth/tree/16.0/users_ldap_populate
:alt: OCA/server-auth
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-auth-16-0/server-auth-16-0-users_ldap_populate
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-auth&target_branch=16.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
This module extends the functionality of auth_ldap by adding functionality so
that users can be populated from a LDAP server.
**Table of contents**
.. contents::
:local:
Usage
=====
To use this module, you need to:
#. Go to 'Settings' -> 'General Settings'
#. In the LDAP category click on or add a LDAP configuration
#. In the pop-up enter all the LDAP settings
#. Click the populate button
#. A new pop-up will notify you of how many users are added
Known issues / Roadmap
======================
* Improve test coverage and port its LDAP Patch method to a module where they can be imported and reutilized on other tests.
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-auth/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/server-auth/issues/new?body=module:%20users_ldap_populate%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
Credits
=======
Authors
~~~~~~~
* Therp BV
Contributors
~~~~~~~~~~~~
* Therp BV <https://therp.nl>
* `Tecnativa <https://www.tecnativa.com>`_:
* Alexandre Díaz
* João Marques
* Carlos Roca
* Carolina Fernandez
Maintainers
~~~~~~~~~~~
This module is maintained by the OCA.
.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
.. |maintainer-joao-p-marques| image:: https://github.com/joao-p-marques.png?size=40px
:target: https://github.com/joao-p-marques
:alt: joao-p-marques
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|maintainer-joao-p-marques|
This module is part of the `OCA/server-auth <https://github.com/OCA/server-auth/tree/16.0/users_ldap_populate>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View file

@ -0,0 +1,5 @@
# Copyright 2012 Therp BV (<http://therp.nl>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
from . import models
from . import wizards

View file

@ -0,0 +1,21 @@
# Copyright 2012-2018 Therp BV <https://therp.nl>.
# Copyright 2021 Tecnativa - João Marques
# Copyright 2023 Tecnativa - Carolina Fernandez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
{
"name": "LDAP Populate",
"version": "16.0.1.0.2",
"author": "Therp BV, Odoo Community Association (OCA)",
"maintainers": ["joao-p-marques"],
"website": "https://github.com/OCA/server-auth",
"license": "AGPL-3",
"category": "Tools",
"depends": ["auth_ldap"],
"external_dependencies": {"python": ["python-ldap"]},
"data": [
"security/ir.model.access.csv",
"wizards/populate_wizard.xml",
"views/users_ldap.xml",
],
"installable": True,
}

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: server-tools (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-09-09 12:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-9-0/"
"language/am/)\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "أنشئ في"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "اسم العرض"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "المعرف"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "الاسم"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Създадено от"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Създадено на"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Име за Показване"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Име"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Dodaj populate dugme u ldap prikaz"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr "LDAP postavke tvrtke"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Kreirano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Deaktiviraj nepoznate korisnike"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "LDAP konfiguracija"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr "Lista korisnika koji nikad ne bi trebali biti deaktivirani čarobnjakom za deaktivaciju"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Ime"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Broj kreiranih korisnika"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Broj deaktiviranih korisnika"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "U redu"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Popuni"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Popuni bazu korisnika"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Popuni korisnike iz LDAP-a"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr "Nije moguće obraditi korisnika sa loginom %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Korisnici koje nikad ne deaktivirati"

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creat per"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creat el"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Veure el nom"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Darrera Actualització el"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nom"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Vytvořeno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Název"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Oprettet af"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Oprettet den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Vist navn"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Id"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Navn"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,140 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Füge 'Einpflegen'-Button zur ldap-Sicht hinzu"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "LDAP-Konfiguration"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Erstellt von"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Erstellt am:"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Anzeigename"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "LDAP-Konfiguration"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zuletzt geändert am"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zuletzt aktualisiert von"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Name"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Kein Anmelde-Attribut gefunden: Konnte aus Filter %s kein Anmelde-Attribut "
"extrahieren"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Anzahl angelegter Benutzer"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Einpflegen"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Pflege Benutzer aus LDAP ein"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Κωδικός"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Ονομασία"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
"teams/23907/en_GB/)\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Created by"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Created on"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Display Name"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Name"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,139 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2020-06-26 22:42+0200\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.3\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Añadir botón para poblar en la vista LDAP"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr "Configuración LDAP de la compañía"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado el"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Desactivar usuarios desconocidos"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre a mostrar"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configuración LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
"Listar usuarios que nunca deben ser desactivados por el asistente de "
"desactivación"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"No se ha encontrado el atributo de login: no se puede extraer el atributo de "
"login del filtro %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Número de usuarios creados"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Número de usuarios desactivados"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Poblar"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Popular usuarios"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Poblar usuarios desde LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr "Imposible procesar usuario con el login %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Usuarios a no desactivar nunca"

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
"es_CL/)\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID (identificación)"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
"es_CO/)\n"
"Language: es_CO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre Público"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Actualizado"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
"teams/23907/es_CR/)\n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
"teams/23907/es_DO/)\n"
"Language: es_DO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
"es_EC/)\n"
"Language: es_EC\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID (identificación)"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-05-01 10:39+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre para mostrar"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
"es_MX/)\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre desplegado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
"es_PE/)\n"
"Language: es_PE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
"es_PY/)\n"
"Language: es_PY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
"teams/23907/es_VE/)\n"
"Language: es_VE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Mostrar nombre"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nombre"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Loonud"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Loodud"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Näidatav nimi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nimi"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Nork sortua"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Created on"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Izena erakutsi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Izena"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "ایجاد شده در"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "نام نمایشی"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "شناسه"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "نام"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: server-tools (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-07-05 18:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-9-0/"
"language/fi/)\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Luonut"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Luotu"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nimi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Viimeksi päivitetty"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nimi"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,142 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2019-24-04 13:23+0000\n"
"Last-Translator: Robin Hède <robin.hede@outlook.fr>\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Poedit 2.2.1\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Ajout du bouton Remplir à la vue LDAP"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Créé le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Désactiver les utilisateurs inconnus"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Identifiant"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nom"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login "
"du filtre %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Nombre d'utilisateurs créés"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Nombre d'utilisateurs archivés"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Synchroniser"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Synchroniser les utilisateurs"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Synchroniser les utilisateurs depuis le serveur LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Utilisateurs à ne pas archiver"
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,142 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-12-30 01:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
"fr_CA/)\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Créé le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Désactiver les utilisateurs inconnus"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Afficher le nom"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Identifiant"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nom"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login "
"du filtre %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Nombre d'utilisateurs créés"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Nombre d'utilisateurs archivés"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Synchroniser"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Synchroniser les utilisateurs"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Synchroniser les utilisateurs depuis le serveur LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Utilisateurs à ne pas archiver"
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,142 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
"teams/23907/fr_CH/)\n"
"Language: fr_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Créé le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Désactiver les utilisateurs inconnus"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Identifiant"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configuration LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr "Liste des utilisateurs à ne pas archiver même si absents du LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nom"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Pas d'attribut login trouvé : impossible d'extraire l'attribut pour le login "
"du filtre %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Nombre d'utilisateurs créés"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Nombre d'utilisateurs archivés"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Synchroniser"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Synchroniser les utilisateurs"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Synchroniser les utilisateurs depuis le serveur LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
"Impossible de synchroniser l'utilisateur ayant l'identifiant suivant : %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Utilisateurs à ne pas archiver"
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creado en"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última modificación"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nome"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-12-30 01:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
"gl_ES/)\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "נוצר על ידי"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "נוצר ב-"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "השם המוצג"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "מזהה"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "שם"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,139 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
# Bole <bole@dajmi5.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Kreirano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Naziv "
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zadnje ažuriranje"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naziv"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,141 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
"hr_HR/)\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Dodaj gumb Popuni na ldap prikaz"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "LDAP postavke"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Kreirano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Naziv"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "LDAP postavke"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naziv"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Nije pronađen login atribut: Nije moguće izvući login atribut iz filtera %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Broje kreiranih korisnika"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Popuni"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Popuni korisnike iz LDAP-a"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Készítette"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Név megjelenítése"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Utoljára frissítve "
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Név"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Dibuat oleh"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Dibuat pada"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nama Tampilan"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nama"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,143 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# Paolo Valier <paolo.valier@hotmail.it>, 2017
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2024-01-04 10:34+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Aggiungi pulsante compilazione alla vista LDAP"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr "Configurazione LDAP azienda"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creato da"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creato il"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Disattiva utenti sconosciuti"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nome visualizzato"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configurazione LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultimo aggiornamento il"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
"Elenco utenti che non devono essere disattivati dalla procedura guidata di "
"disattivazione"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nome"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Nessun attributo di accesso trovato: impossibile estrarre attributo di "
"accesso dal filtro %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Numero di utenti creati"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Numero di utenti disattivati"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "OK"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Compila"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Compila database utente"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Compila utenti da LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr "Impossibile elaborare utente con accesso %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Utenti da non disattivare"
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "作成者"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "作成日"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "表示名"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "最終更新日"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "最終更新者"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "最終更新日"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "名称"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "작성자"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "작성일"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "표시 이름"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "최근 수정"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "이름"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Sukurta"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Vaizduojamas pavadinimas"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Pavadinimas"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-12-30 01:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
"teams/23907/lt_LT/)\n"
"Language: lt_LT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Sukūrė"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Sukurta"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Izveidoja"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Izveidots"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Pēdējās izmaiņas"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nosaukums"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Креирано од"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Креирано на"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Прикажи име"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Име"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Үүсгэгч"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Дэлгэцийн Нэр"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Нэр"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
"nb/)\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Opprettet av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Opprettet den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Visnings navn"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Navn"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-12-30 01:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
"teams/23907/nb_NO/)\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Laget av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Laget den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Vis navn"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Sist oppdatert den"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Te tonen naam"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naam"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
"nl_BE/)\n"
"Language: nl_BE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Gemaakt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Gemaakt op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Schermnaam"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naam:"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-06-22 01:12+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Aangemaakt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Aangemaakt op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "weergavenaam"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naam"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Utworzone przez"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Utworzono"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Wyświetlana nazwa "
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nazwa"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Criado em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nome"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última Modificação Por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nome"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,141 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2024-05-29 16:35+0000\n"
"Last-Translator: Rodrigo Macedo <sottomaiormacedotec@users.noreply."
"translation.odoo-community.org>\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
"23907/pt_BR/)\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.17\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Adicione botão popular na visão ldap"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr "Configuração LDAP da empresa"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Criado em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr "Desative usuários desconhecidos"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nome para Mostrar"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Identificação"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "Configuração LDAP"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
"Listar usuários que nunca devem ser desativados pelo assistente de "
"desativação"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nome"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Nenhum atributo de login encontrado: não foi possível extrair o atributo de "
"login do filtro %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Número de usuários criado"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr "Número de usuários desativados"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "Certo"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Popular"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr "Popular base de dados de usuário"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Popular usuários do LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr "Não foi possível processar o usuário com login %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr "Usuários nunca devem desativar"

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
"teams/23907/pt_PT/)\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Criado por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Criado em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nome a Apresentar"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Última Atualização Por"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Última Atualização Em"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nome"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Creat de"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Creat la"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Nume Afişat"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Ultima actualizare la"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Nume"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2016-12-30 01:36+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Создано"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Создан"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Последний раз обновлено"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Название"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Vytvoril"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Vytvorené"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Zobraziť meno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Meno"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,142 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2023-03-31 21:25+0000\n"
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 4.14.1\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr "Dodaj gumb 'Naseli' v LDAP prikaz"
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "LDAP nastavitve"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Ustvaril"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Ustvarjeno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Prikazani naziv"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "LDAP nastavitve"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zadnji posodobil"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Naziv"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
"Prijavni atribut ni najden: ni bilo mogoče izvleči prijavnega atributa iz "
"filtra %s"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr "Število ustvarjenih uporabnikov"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr "V redu"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "Naseli"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr "Naseli uporabnike iz LDAP"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""
#~ msgid "res.company.ldap"
#~ msgstr "res.company.ldap"

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Kreiran"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Ime"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
"sr@latin/)\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Kreirao"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Kreiran"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Ime za prikaz"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Ime:"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Skapad av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Skapad den"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Visa namn"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Namn"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "สร้างโดย"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "สร้างเมื่อ"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "รหัส"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "ชื่อ"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Oluşturuldu"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Görünen İsim"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Son güncellenme"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Adı"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-22 00:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
"tr_TR/)\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Oluşturan"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Görünen ad"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "Kimlik"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Ad"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Створив"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Дата створення"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Назва для відображення"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Останнє оновлення"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Name"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,129 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Được tạo bởi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Được tạo vào"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "Tên hiển thị"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Tên"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-02-18 02:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
"teams/23907/vi_VN/)\n"
"Language: vi_VN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "Tạo bởi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "Tạo vào"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "Tên"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,136 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
"zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
#, fuzzy
msgid "Company LDAP configuration"
msgstr "LDAP 配置"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "创建者"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "创建时间"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "显示名称"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "ID"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr "LDAP 配置"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "最后更新者"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "上次更新日期"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "名称"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr "繁殖"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * users_ldap_populate
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-06-26 20:39+0000\n"
"PO-Revision-Date: 2017-12-01 02:11+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
"zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "Add populate button to ldap view"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap
msgid "Company LDAP configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_uid
msgid "Created by"
msgstr "建立者"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__create_date
msgid "Created on"
msgstr "建立於"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__deactivate_unknown_users
msgid "Deactivate unknown users"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__display_name
msgid "Display Name"
msgstr "顯示名稱"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__id
msgid "ID"
msgstr "編號"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__ldap_id
msgid "LDAP Configuration"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard____last_update
msgid "Last Modified on"
msgstr "最後修改:"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_uid
msgid "Last Updated by"
msgstr "最後更新:"
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__write_date
msgid "Last Updated on"
msgstr "最後更新於"
#. module: users_ldap_populate
#: model:ir.model.fields,help:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "List users who never should be deactivated by the deactivation wizard"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__name
msgid "Name"
msgstr "名稱"
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid ""
"No login attribute found: Could not extract login attribute from filter %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_created
msgid "Number of users created"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap_populate_wizard__users_deactivated
msgid "Number of users deactivated"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.populate_wizard_view
msgid "OK"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate"
msgstr ""
#. module: users_ldap_populate
#: model_terms:ir.ui.view,arch_db:users_ldap_populate.company_form_view
msgid "Populate user database"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model,name:users_ldap_populate.model_res_company_ldap_populate_wizard
msgid "Populate users from LDAP"
msgstr ""
#. module: users_ldap_populate
#. odoo-python
#: code:addons/users_ldap_populate/models/users_ldap.py:0
#, python-format
msgid "Unable to process user with login %s"
msgstr ""
#. module: users_ldap_populate
#: model:ir.model.fields,field_description:users_ldap_populate.field_res_company_ldap__no_deactivate_user_ids
msgid "Users never to deactivate"
msgstr ""

View file

@ -0,0 +1,5 @@
# Copyright 2012 Therp BV (<http://therp.nl>)
# Copyright 2023 Tecnativa - Carolina Fernandez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
from . import users_ldap

View file

@ -0,0 +1,206 @@
# Copyright 2012 Therp BV (<http://therp.nl>)
# Copyright 2021 Tecnativa - João Marques
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
import logging
import re
from odoo import SUPERUSER_ID, _, fields, models
from odoo.exceptions import AccessDenied, UserError
_logger = logging.getLogger(__name__)
try:
import ldap
from ldap.filter import filter_format
except ImportError:
_logger.debug("Cannot import ldap.")
class CompanyLDAP(models.Model):
_inherit = "res.company.ldap"
no_deactivate_user_ids = fields.Many2many(
comodel_name="res.users",
relation="res_company_ldap_no_deactivate_user_rel",
column1="ldap_id",
column2="user_id",
string="Users never to deactivate",
help="List users who never should be deactivated by the deactivation wizard",
default=lambda self: [(6, 0, [SUPERUSER_ID])],
)
deactivate_unknown_users = fields.Boolean(
string="Deactivate unknown users",
default=False,
)
def action_populate(self):
"""
Prepopulate the user table from one or more LDAP resources.
Obviously, the option to create users must be toggled in
the LDAP configuration.
Return the number of users created (as far as we can tell).
"""
_logger.debug("action_populate called on res.company.ldap ids %s", self.ids)
users_model = self.env["res.users"]
users_count_before = users_model.search_count([])
deactivate_unknown, known_user_ids = self._check_users()
if deactivate_unknown:
_logger.debug("will deactivate unknown users")
for conf in self._get_ldap_dicts():
if not conf["create_user"]:
continue
attribute_match = re.search(r"([a-zA-Z_]+)=\%s", conf["ldap_filter"])
if attribute_match:
login_attr = attribute_match.group(1)
else:
raise UserError(
_(
"No login attribute found: "
"Could not extract login attribute from filter %s"
)
% conf["ldap_filter"]
)
results = self._get_ldap_entry_dicts(conf)
for result in results:
login = result[1][login_attr][0].lower().strip()
if isinstance(login, bytes):
login = login.decode()
user_id = None
try:
user_id = self.with_context(
no_reset_password=True
)._get_or_create_user(conf, login, result)
except AccessDenied as e:
# this happens if the user exists but is active = False
# -> fetch the user again and reactivate it
self.env.cr.execute(
"SELECT id FROM res_users WHERE lower(login)=%s", (login,)
)
res = self.env.cr.fetchone()
_logger.debug("unarchiving user %s", login)
if res:
self.env["res.users"].sudo().browse(res[0]).write(
{"active": True}
)
user_id = res[0]
else:
raise UserError from e(
_("Unable to process user with login %s") % login
)
finally:
known_user_ids.append(user_id)
users_created = users_model.search_count([]) - users_count_before
deactivated_users_count = 0
if deactivate_unknown:
deactivated_users_count = self.do_deactivate_unknown_users(known_user_ids)
_logger.debug("%d users created", users_created)
_logger.debug("%d users deactivated", deactivated_users_count)
return users_created, deactivated_users_count
def _check_users(self):
ldap_config = self.search([])
deactivate_unknown = None
known_user_ids = [self.env.user.id]
for item in ldap_config.read(
["no_deactivate_user_ids", "deactivate_unknown_users"],
load="_classic_write",
):
if deactivate_unknown is None:
deactivate_unknown = True
known_user_ids.extend(item["no_deactivate_user_ids"])
deactivate_unknown &= item["deactivate_unknown_users"]
return deactivate_unknown, known_user_ids
def _get_ldap_entry_dicts(self, conf, user_name="*", timeout=60):
"""Execute ldap query as defined in conf.
Don't call self.query because it supresses possible exceptions
"""
ldap_filter = filter_format(conf["ldap_filter"] % user_name, ())
conn = self._connect(conf)
ldap_password = conf["ldap_password"] or ""
ldap_binddn = conf["ldap_binddn"] or ""
conn.simple_bind_s(ldap_binddn, ldap_password)
results = conn.search_st(
conf["ldap_base"],
ldap.SCOPE_SUBTREE,
ldap_filter,
["*", "+"],
timeout=timeout,
)
conn.unbind()
return results
def do_deactivate_unknown_users(self, known_user_ids):
"""Deactivate users not found in last populate run."""
unknown_user_ids = []
known_user_ids = list(set(known_user_ids))
users = (
self.env["res.users"]
.sudo()
.search([("id", "not in", known_user_ids)], order="login")
)
ldap_confs = self._get_ldap_dicts()
for unknown_user in users:
_logger.debug("checking user %s", unknown_user.login)
present_in_ldap = any(
bool(
self._get_ldap_entry_dicts(
conf,
user_name=unknown_user.login,
)
)
for conf in ldap_confs
)
if not present_in_ldap:
_logger.debug("archiving user %s", unknown_user.login)
unknown_user.active = False
unknown_user_ids.append(unknown_user.id)
return len(unknown_user_ids)
def get_ldap_entry_dicts(self, conf, user_name="*"):
"""
Execute ldap query as defined in conf
Don't call self.query because it supresses possible exceptions
"""
ldap_filter = (
filter_format(conf["ldap_filter"], (user_name,))
if user_name != "*"
else conf["ldap_filter"] % user_name
)
conn = self.connect(conf)
conn.simple_bind_s(conf["ldap_binddn"] or "", conf["ldap_password"] or "")
results = conn.search_st(
conf["ldap_base"], ldap.SCOPE_SUBTREE, ldap_filter, None, timeout=60
)
conn.unbind()
return results
def populate_wizard(self):
"""
GUI wrapper for the populate method that reports back
the number of users created.
"""
self.ensure_one()
wizard_obj = self.env["res.company.ldap.populate_wizard"]
res_id = wizard_obj.create({"ldap_id": self.id}).id
return {
"name": wizard_obj._description,
"view_type": "form",
"view_mode": "form",
"res_model": wizard_obj._name,
"domain": [],
"context": self.env.context,
"type": "ir.actions.act_window",
"target": "new",
"res_id": res_id,
"nodestroy": True,
}

View file

@ -0,0 +1,7 @@
* Therp BV <https://therp.nl>
* `Tecnativa <https://www.tecnativa.com>`_:
* Alexandre Díaz
* João Marques
* Carlos Roca
* Carolina Fernandez

View file

@ -0,0 +1,2 @@
This module extends the functionality of auth_ldap by adding functionality so
that users can be populated from a LDAP server.

View file

@ -0,0 +1 @@
* Improve test coverage and port its LDAP Patch method to a module where they can be imported and reutilized on other tests.

View file

@ -0,0 +1,7 @@
To use this module, you need to:
#. Go to 'Settings' -> 'General Settings'
#. In the LDAP category click on or add a LDAP configuration
#. In the pop-up enter all the LDAP settings
#. Click the populate button
#. A new pop-up will notify you of how many users are added

View file

@ -0,0 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_res_company_ldap_populate_wizard,access_res_company_ldap_populate_wizard,model_res_company_ldap_populate_wizard,base.group_system,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_res_company_ldap_populate_wizard access_res_company_ldap_populate_wizard model_res_company_ldap_populate_wizard base.group_system 1 1 1 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View file

@ -0,0 +1,458 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
<title>README.rst</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic, pre.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document">
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
</a>
<div class="section" id="ldap-populate">
<h1>LDAP Populate</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:89e9c60cc8c9ff89c12c0550eff2e6267a92b8fb4628cbd9adb2bf6f23a0aedc
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-auth/tree/16.0/users_ldap_populate"><img alt="OCA/server-auth" src="https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-auth-16-0/server-auth-16-0-users_ldap_populate"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-auth&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module extends the functionality of auth_ldap by adding functionality so
that users can be populated from a LDAP server.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-2">Known issues / Roadmap</a></li>
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="usage">
<h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
<p>To use this module, you need to:</p>
<ol class="arabic simple">
<li>Go to Settings -&gt; General Settings</li>
<li>In the LDAP category click on or add a LDAP configuration</li>
<li>In the pop-up enter all the LDAP settings</li>
<li>Click the populate button</li>
<li>A new pop-up will notify you of how many users are added</li>
</ol>
</div>
<div class="section" id="known-issues-roadmap">
<h2><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h2>
<ul class="simple">
<li>Improve test coverage and port its LDAP Patch method to a module where they can be imported and reutilized on other tests.</li>
</ul>
</div>
<div class="section" id="bug-tracker">
<h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-auth/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/server-auth/issues/new?body=module:%20users_ldap_populate%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
<div class="section" id="authors">
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
<ul class="simple">
<li>Therp BV</li>
</ul>
</div>
<div class="section" id="contributors">
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
<ul class="simple">
<li>Therp BV &lt;<a class="reference external" href="https://therp.nl">https://therp.nl</a>&gt;</li>
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
<li>Alexandre Díaz</li>
<li>João Marques</li>
<li>Carlos Roca</li>
<li>Carolina Fernandez</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
<p><a class="reference external image-reference" href="https://github.com/joao-p-marques"><img alt="joao-p-marques" src="https://github.com/joao-p-marques.png?size=40px" /></a></p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-auth/tree/16.0/users_ldap_populate">OCA/server-auth</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1 @@
from . import test_users_ldap_populate

View file

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

View file

@ -0,0 +1,26 @@
<?xml version="1.0" ?>
<odoo>
<record model="ir.ui.view" id="company_form_view">
<field name="name">Add populate button to ldap view</field>
<field name="model">res.company.ldap</field>
<field name="inherit_id" ref="auth_ldap.view_ldap_installer_form" />
<field name="arch" type="xml">
<xpath name="populate_ldap" expr="//group" position="after">
<group string="Populate user database">
<field name="deactivate_unknown_users" />
<field
name="no_deactivate_user_ids"
attrs="{'invisible': [('deactivate_unknown_users', '=', False)]}"
widget="many2many_tags"
/>
</group>
<button
name="populate_wizard"
string="Populate"
type="object"
colspan="2"
/>
</xpath>
</field>
</record>
</odoo>

View file

@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
from . import populate_wizard

Some files were not shown because too many files have changed in this diff Show more