Luis M. Ontalba
8 years ago
committed by
Pedro M. Baeza
11 changed files with 317 additions and 48 deletions
-
7partner_deduplicate_acl/README.rst
-
2partner_deduplicate_acl/__init__.py
-
2partner_deduplicate_acl/__manifest__.py
-
59partner_deduplicate_acl/i18n/hr.po
-
87partner_deduplicate_acl/i18n/nl_NL.po
-
51partner_deduplicate_acl/i18n/pt_BR.po
-
58partner_deduplicate_acl/i18n/tr.po
-
3partner_deduplicate_acl/views/base_partner_merge_view.xml
-
2partner_deduplicate_acl/wizards/__init__.py
-
90partner_deduplicate_acl/wizards/partner_merge.py
-
4partner_deduplicate_acl/wizards/partner_merge_view.xml
@ -1,6 +1,4 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2016 Tecnativa, S.L. - Jairo Llopis |
|
||||
# © 2016 Tecnativa, S.L. - Vicent Cubells |
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
from . import wizards |
from . import wizards |
@ -0,0 +1,87 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * crm_deduplicate_acl |
||||
|
# |
||||
|
# 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: 2017-12-04 15:47+0000\n" |
||||
|
"PO-Revision-Date: 2017-12-04 15:47+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" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: nl_NL\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: code:addons/crm_deduplicate_acl/wizards/partner_merge.py:46 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"All contacts must have the same email. Only the Administrator can merge " |
||||
|
"contacts with different emails." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:res.groups,name:crm_deduplicate_acl.group_automatically |
||||
|
msgid "Automatically" |
||||
|
msgstr "Automatisch" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:ir.module.category,name:crm_deduplicate_acl.category |
||||
|
#: model:ir.ui.menu,name:crm_deduplicate_acl.partner_merge_automatic_menu |
||||
|
msgid "Deduplicate Contacts" |
||||
|
msgstr "Ontdubbel Relaties" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: code:addons/crm_deduplicate_acl/wizards/partner_merge.py:28 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"For safety reasons, you cannot merge more than 3 contacts together. You can " |
||||
|
"re-open the wizard several times if needed." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:res.groups,name:crm_deduplicate_acl.group_manually |
||||
|
msgid "Manually" |
||||
|
msgstr "Handmatig" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: code:addons/crm_deduplicate_acl/wizards/partner_merge.py:81 |
||||
|
#, python-format |
||||
|
msgid "Merged with the following partners:" |
||||
|
msgstr "Samengevoegd met de volgende contacten:" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: code:addons/crm_deduplicate_acl/wizards/partner_merge.py:69 |
||||
|
#, python-format |
||||
|
msgid "" |
||||
|
"Only the destination contact may be linked to existing Journal Items. Please" |
||||
|
" ask the Administrator if you need to merge several contacts linked to " |
||||
|
"existing Journal Items." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:ir.ui.menu,name:crm_deduplicate_acl.root_menu |
||||
|
msgid "Tools" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:res.groups,name:crm_deduplicate_acl.group_unrestricted |
||||
|
msgid "Without restrictions" |
||||
|
msgstr "Zonder beperkingen" |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: code:addons/crm_deduplicate_acl/wizards/partner_merge.py:38 |
||||
|
#, python-format |
||||
|
msgid "You cannot merge a contact with one of his parent." |
||||
|
msgstr "Je kan geen relatie samenvoegen met één van haar ouders." |
||||
|
|
||||
|
#. module: crm_deduplicate_acl |
||||
|
#: model:ir.model,name:crm_deduplicate_acl.model_base_partner_merge_automatic_wizard |
||||
|
msgid "base.partner.merge.automatic.wizard" |
||||
|
msgstr "base.partner.merge.automatic.wizard" |
@ -1,6 +1,4 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
# © 2016 Tecnativa, S.L. - Jairo Llopis |
|
||||
# © 2016 Tecnativa, S.L. - Vicent Cubells |
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
from . import partner_merge |
from . import partner_merge |
Write
Preview
Loading…
Cancel
Save
Reference in new issue