From c69ee72f8fb4aabc38ebeceee8ec431de0c445d7 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 9 Jun 2016 10:17:12 +0200 Subject: [PATCH 01/10] [ADD] crm_deduplicate_by_ref ================================= Deduplicate Contacts by reference ================================= This module extends the criteria to match duplicated contacts using the field reference. Usage ===== To use this module, you need to: * Go to *Sales > Tools > Deduplicate Contacts*. * Mark "Reference" in the section "Search duplicates based on duplicated data in". * This criteria will be used for deduplicating. --- partner_deduplicate_by_ref/README.rst | 60 ++++++++++ partner_deduplicate_by_ref/__init__.py | 4 + partner_deduplicate_by_ref/__openerp__.py | 21 ++++ partner_deduplicate_by_ref/i18n/es.po | 27 +++++ .../static/description/icon.png | Bin 0 -> 10680 bytes .../static/description/icon.svg | 107 ++++++++++++++++++ partner_deduplicate_by_ref/tests/__init__.py | 4 + .../tests/test_crm_deduplicate_by_ref.py | 50 ++++++++ .../wizards/__init__.py | 5 + .../wizards/partner_merge.py | 29 +++++ .../wizards/partner_merge_view.xml | 20 ++++ 11 files changed, 327 insertions(+) create mode 100644 partner_deduplicate_by_ref/README.rst create mode 100644 partner_deduplicate_by_ref/__init__.py create mode 100644 partner_deduplicate_by_ref/__openerp__.py create mode 100644 partner_deduplicate_by_ref/i18n/es.po create mode 100644 partner_deduplicate_by_ref/static/description/icon.png create mode 100644 partner_deduplicate_by_ref/static/description/icon.svg create mode 100644 partner_deduplicate_by_ref/tests/__init__.py create mode 100644 partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py create mode 100644 partner_deduplicate_by_ref/wizards/__init__.py create mode 100644 partner_deduplicate_by_ref/wizards/partner_merge.py create mode 100644 partner_deduplicate_by_ref/wizards/partner_merge_view.xml diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst new file mode 100644 index 000000000..48cda88b1 --- /dev/null +++ b/partner_deduplicate_by_ref/README.rst @@ -0,0 +1,60 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================================= +Deduplicate Contacts by reference +================================= + +This module extends the criteria to match duplicated contacts using the field +reference. + +Usage +===== + +To use this module, you need to: + +#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Mark "Reference" in the section "Search duplicates based on duplicated data + in". +#. This criteria will be used for deduplicating. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/111/9.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* `Arrow `_. + +Contributors +------------ + +* Pedro M. Baeza + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/partner_deduplicate_by_ref/__init__.py b/partner_deduplicate_by_ref/__init__.py new file mode 100644 index 000000000..f8944f05c --- /dev/null +++ b/partner_deduplicate_by_ref/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import wizards diff --git a/partner_deduplicate_by_ref/__openerp__.py b/partner_deduplicate_by_ref/__openerp__.py new file mode 100644 index 000000000..4c5915ed8 --- /dev/null +++ b/partner_deduplicate_by_ref/__openerp__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Deduplicate Contacts by reference", + "version": "9.0.1.0.0", + "category": "Tools", + "website": "https://www.tecnativa.com", + "author": "Tecnativa, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": [ + "crm", + "crm_deduplicate_acl", + ], + "data": [ + 'wizards/partner_merge_view.xml', + ], +} diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po new file mode 100644 index 000000000..0defc8aab --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -0,0 +1,27 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-01 21:29+0000\n" +"PO-Revision-Date: 2017-03-01 21:29+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" + diff --git a/partner_deduplicate_by_ref/static/description/icon.png b/partner_deduplicate_by_ref/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..82778ec46536d4507e895aa003cb462a00b06598 GIT binary patch literal 10680 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 literal 0 HcmV?d00001 diff --git a/partner_deduplicate_by_ref/static/description/icon.svg b/partner_deduplicate_by_ref/static/description/icon.svg new file mode 100644 index 000000000..fc243fd98 --- /dev/null +++ b/partner_deduplicate_by_ref/static/description/icon.svg @@ -0,0 +1,107 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/partner_deduplicate_by_ref/tests/__init__.py b/partner_deduplicate_by_ref/tests/__init__.py new file mode 100644 index 000000000..0e3f4a7d8 --- /dev/null +++ b/partner_deduplicate_by_ref/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py new file mode 100644 index 000000000..717fb0eeb --- /dev/null +++ b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests import common +from openerp.tools.safe_eval import safe_eval + + +class TestDeduplicateByRef(common.TransactionCase): + def setUp(self): + super(TestDeduplicateByRef, self).setUp() + self.partner_1 = self.env['res.partner'].create({ + 'name': 'Partner 1', + 'ref': '123456', + 'email': 'test@deduplicate.com', + }) + self.partner_2 = self.env['res.partner'].create({ + 'name': 'Partner 2', + 'ref': '123456', + 'email': 'test@deduplicate.com', + }) + + def test_deduplicate_by_ref(self): + wizard = self.env['base.partner.merge.automatic.wizard'].create({ + 'group_by_ref': True, + }) + wizard.start_process_cb() + found_match = False + for line in wizard.line_ids: + match_ids = safe_eval(line.aggr_ids) + if (self.partner_1.id in match_ids and + self.partner_2.id in match_ids): + found_match = True + break + self.assertTrue(found_match) + + def test_deduplicate_by_ref_and_is_company(self): + wizard = self.env['base.partner.merge.automatic.wizard'].create({ + 'group_by_ref': True, + 'group_by_email': True, + }) + wizard.start_process_cb() + found_match = False + for line in wizard.line_ids: + match_ids = safe_eval(line.aggr_ids) + if (self.partner_1.id in match_ids and + self.partner_2.id in match_ids): + found_match = True + break + self.assertTrue(found_match) diff --git a/partner_deduplicate_by_ref/wizards/__init__.py b/partner_deduplicate_by_ref/wizards/__init__.py new file mode 100644 index 000000000..c93eadfed --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Antiun Ingeniería S.L. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import partner_merge diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py new file mode 100644 index 000000000..e39a9da50 --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import fields, models + + +class BasePartnerMergeAutomaticWizard(models.TransientModel): + _inherit = "base.partner.merge.automatic.wizard" + + group_by_ref = fields.Boolean('Reference') + + def _generate_query(self, fields, maximum_group=100): + """Inject the additional criteria 'ref IS NOT NULL' when needed. + There's no better way to do it, as there are no hooks for adding + this criteria regularly. + """ + query = super(BasePartnerMergeAutomaticWizard, self)._generate_query( + fields, maximum_group=maximum_group) + if 'ref' in fields: + if 'WHERE' in query: + index = query.find('WHERE') + query = (query[:index + 6] + "ref IS NOT NULL AND " + + query[index + 6:]) + else: + index = query.find(' GROUP BY') + query = (query[:index] + " WHERE ref IS NOT NULL" + + query[index:]) + return query diff --git a/partner_deduplicate_by_ref/wizards/partner_merge_view.xml b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml new file mode 100644 index 000000000..73f1a1487 --- /dev/null +++ b/partner_deduplicate_by_ref/wizards/partner_merge_view.xml @@ -0,0 +1,20 @@ + + + + + + + base.partner.merge.automatic.wizard + + + + + + + + + + + + From f78f234628e0200b1f2a2b3ecb214057d2a9c521 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Fri, 17 Mar 2017 21:24:33 -0400 Subject: [PATCH 02/10] OCA Transbot updated translations from Transifex --- partner_deduplicate_by_ref/i18n/ar.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/bs.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/cs.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/de.po | 30 ++++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/en_GB.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/es_CR.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/es_EC.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/es_MX.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/et.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/fr.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/gl.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/hr.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/hu.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/it.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/ja.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/lt.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/lv.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/mk.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/mn.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/nb.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/nl.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/nl_BE.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/nl_NL.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/pt.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/pt_BR.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/pt_PT.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/ro.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/ru.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/sk.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/sl.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/sv.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/th.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/tr.po | 30 ++++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/zh_CN.po | 29 +++++++++++++++++++++++ partner_deduplicate_by_ref/i18n/zh_TW.po | 29 +++++++++++++++++++++++ 35 files changed, 1017 insertions(+) create mode 100644 partner_deduplicate_by_ref/i18n/ar.po create mode 100644 partner_deduplicate_by_ref/i18n/bs.po create mode 100644 partner_deduplicate_by_ref/i18n/cs.po create mode 100644 partner_deduplicate_by_ref/i18n/de.po create mode 100644 partner_deduplicate_by_ref/i18n/en_GB.po create mode 100644 partner_deduplicate_by_ref/i18n/es_CR.po create mode 100644 partner_deduplicate_by_ref/i18n/es_EC.po create mode 100644 partner_deduplicate_by_ref/i18n/es_MX.po create mode 100644 partner_deduplicate_by_ref/i18n/et.po create mode 100644 partner_deduplicate_by_ref/i18n/fr.po create mode 100644 partner_deduplicate_by_ref/i18n/gl.po create mode 100644 partner_deduplicate_by_ref/i18n/hr.po create mode 100644 partner_deduplicate_by_ref/i18n/hu.po create mode 100644 partner_deduplicate_by_ref/i18n/it.po create mode 100644 partner_deduplicate_by_ref/i18n/ja.po create mode 100644 partner_deduplicate_by_ref/i18n/lt.po create mode 100644 partner_deduplicate_by_ref/i18n/lv.po create mode 100644 partner_deduplicate_by_ref/i18n/mk.po create mode 100644 partner_deduplicate_by_ref/i18n/mn.po create mode 100644 partner_deduplicate_by_ref/i18n/nb.po create mode 100644 partner_deduplicate_by_ref/i18n/nl.po create mode 100644 partner_deduplicate_by_ref/i18n/nl_BE.po create mode 100644 partner_deduplicate_by_ref/i18n/nl_NL.po create mode 100644 partner_deduplicate_by_ref/i18n/pt.po create mode 100644 partner_deduplicate_by_ref/i18n/pt_BR.po create mode 100644 partner_deduplicate_by_ref/i18n/pt_PT.po create mode 100644 partner_deduplicate_by_ref/i18n/ro.po create mode 100644 partner_deduplicate_by_ref/i18n/ru.po create mode 100644 partner_deduplicate_by_ref/i18n/sk.po create mode 100644 partner_deduplicate_by_ref/i18n/sl.po create mode 100644 partner_deduplicate_by_ref/i18n/sv.po create mode 100644 partner_deduplicate_by_ref/i18n/th.po create mode 100644 partner_deduplicate_by_ref/i18n/tr.po create mode 100644 partner_deduplicate_by_ref/i18n/zh_CN.po create mode 100644 partner_deduplicate_by_ref/i18n/zh_TW.po diff --git a/partner_deduplicate_by_ref/i18n/ar.po b/partner_deduplicate_by_ref/i18n/ar.po new file mode 100644 index 000000000..2cc0131a3 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ar.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "مرجع" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/bs.po b/partner_deduplicate_by_ref/i18n/bs.po new file mode 100644 index 000000000..d86892f1f --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/bs.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referenca" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/cs.po b/partner_deduplicate_by_ref/i18n/cs.po new file mode 100644 index 000000000..e2ab592e0 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/cs.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Odkaz" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/de.po b/partner_deduplicate_by_ref/i18n/de.po new file mode 100644 index 000000000..104c37b5c --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Bezug" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/en_GB.po b/partner_deduplicate_by_ref/i18n/en_GB.po new file mode 100644 index 000000000..84bb7950c --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/en_GB.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Reference" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_CR.po b/partner_deduplicate_by_ref/i18n/es_CR.po new file mode 100644 index 000000000..fa005d7e9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_CR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_EC.po b/partner_deduplicate_by_ref/i18n/es_EC.po new file mode 100644 index 000000000..387ae73e9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_EC.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Ref." + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/es_MX.po b/partner_deduplicate_by_ref/i18n/es_MX.po new file mode 100644 index 000000000..197fe45cb --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/es_MX.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/et.po b/partner_deduplicate_by_ref/i18n/et.po new file mode 100644 index 000000000..24f2c2783 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/et.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Viide" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/fr.po b/partner_deduplicate_by_ref/i18n/fr.po new file mode 100644 index 000000000..84a748747 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/fr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Référence" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po new file mode 100644 index 000000000..bb0dd824e --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# César Castro Cruz , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: César Castro Cruz , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referencia" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/hr.po b/partner_deduplicate_by_ref/i18n/hr.po new file mode 100644 index 000000000..8e0e73824 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/hr.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Veza" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/hu.po b/partner_deduplicate_by_ref/i18n/hu.po new file mode 100644 index 000000000..21bda7a92 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/hu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Hivatkozás" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/it.po b/partner_deduplicate_by_ref/i18n/it.po new file mode 100644 index 000000000..8f26641e9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/it.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Riferimento" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ja.po b/partner_deduplicate_by_ref/i18n/ja.po new file mode 100644 index 000000000..aba0a31db --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ja.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "参照" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lt.po b/partner_deduplicate_by_ref/i18n/lt.po new file mode 100644 index 000000000..59353f3ab --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/lt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Numeris" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/lv.po b/partner_deduplicate_by_ref/i18n/lv.po new file mode 100644 index 000000000..fdcd88326 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/lv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Atsauce" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mk.po b/partner_deduplicate_by_ref/i18n/mk.po new file mode 100644 index 000000000..16254f7c5 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/mk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Референца" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/mn.po b/partner_deduplicate_by_ref/i18n/mn.po new file mode 100644 index 000000000..54cf8adb9 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/mn.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Код" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nb.po b/partner_deduplicate_by_ref/i18n/nb.po new file mode 100644 index 000000000..77aeb48ee --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nb.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referanse" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl.po b/partner_deduplicate_by_ref/i18n/nl.po new file mode 100644 index 000000000..1014c7610 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Erwin van der Ploeg , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Erwin van der Ploeg , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_BE.po b/partner_deduplicate_by_ref/i18n/nl_BE.po new file mode 100644 index 000000000..86a6bd87e --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl_BE.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/nl_NL.po b/partner_deduplicate_by_ref/i18n/nl_NL.po new file mode 100644 index 000000000..4c3491aa1 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/nl_NL.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-19 01:49+0000\n" +"PO-Revision-Date: 2017-08-19 01:49+0000\n" +"Last-Translator: Peter Hageman , 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_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referentie" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt.po b/partner_deduplicate_by_ref/i18n/pt.po new file mode 100644 index 000000000..ad3036fbd --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po new file mode 100644 index 000000000..f4f865b3c --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/pt_PT.po b/partner_deduplicate_by_ref/i18n/pt_PT.po new file mode 100644 index 000000000..60e4ca2cc --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/pt_PT.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referência" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ro.po b/partner_deduplicate_by_ref/i18n/ro.po new file mode 100644 index 000000000..ca64329ba --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ro.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# Dorin Hongu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Dorin Hongu , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referință" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/ru.po b/partner_deduplicate_by_ref/i18n/ru.po new file mode 100644 index 000000000..01a50dd89 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/ru.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Ссылка" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sk.po b/partner_deduplicate_by_ref/i18n/sk.po new file mode 100644 index 000000000..70a3c7db5 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sk.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# gebri , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: gebri , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/sl.po b/partner_deduplicate_by_ref/i18n/sl.po new file mode 100644 index 000000000..4eae5804a --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Sklic" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/sv.po b/partner_deduplicate_by_ref/i18n/sv.po new file mode 100644 index 000000000..d751d6237 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/sv.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referens" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/th.po b/partner_deduplicate_by_ref/i18n/th.po new file mode 100644 index 000000000..d2ad7495c --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/th.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "อ้างถึง" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/tr.po b/partner_deduplicate_by_ref/i18n/tr.po new file mode 100644 index 000000000..8a0293125 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +# Ahmet Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: Ahmet Altinisik , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "Referans" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "base.partner.merge.automatic.wizard" diff --git a/partner_deduplicate_by_ref/i18n/zh_CN.po b/partner_deduplicate_by_ref/i18n/zh_CN.po new file mode 100644 index 000000000..acb3205ac --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/zh_CN.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "引用" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" diff --git a/partner_deduplicate_by_ref/i18n/zh_TW.po b/partner_deduplicate_by_ref/i18n/zh_TW.po new file mode 100644 index 000000000..46fdad2cb --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/zh_TW.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-16 03:45+0000\n" +"PO-Revision-Date: 2017-03-16 03:45+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "參考" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" From 1f989818214a9bc9da8966dcb3b6e7b9bed4222d Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 02:16:38 +0000 Subject: [PATCH 03/10] [UPD] Update crm_deduplicate_by_ref.pot --- partner_deduplicate_by_ref/i18n/ar.po | 7 +++--- partner_deduplicate_by_ref/i18n/bs.po | 7 +++--- .../i18n/crm_deduplicate_by_ref.pot | 25 +++++++++++++++++++ partner_deduplicate_by_ref/i18n/cs.po | 4 +-- partner_deduplicate_by_ref/i18n/de.po | 4 +-- partner_deduplicate_by_ref/i18n/en_GB.po | 7 +++--- partner_deduplicate_by_ref/i18n/es.po | 4 +-- partner_deduplicate_by_ref/i18n/es_CR.po | 7 +++--- partner_deduplicate_by_ref/i18n/es_EC.po | 7 +++--- partner_deduplicate_by_ref/i18n/es_MX.po | 7 +++--- partner_deduplicate_by_ref/i18n/et.po | 4 +-- partner_deduplicate_by_ref/i18n/fr.po | 4 +-- partner_deduplicate_by_ref/i18n/gl.po | 4 +-- partner_deduplicate_by_ref/i18n/hr.po | 7 +++--- partner_deduplicate_by_ref/i18n/hu.po | 4 +-- partner_deduplicate_by_ref/i18n/it.po | 4 +-- partner_deduplicate_by_ref/i18n/ja.po | 4 +-- partner_deduplicate_by_ref/i18n/lt.po | 7 +++--- partner_deduplicate_by_ref/i18n/lv.po | 7 +++--- partner_deduplicate_by_ref/i18n/mk.po | 4 +-- partner_deduplicate_by_ref/i18n/mn.po | 4 +-- partner_deduplicate_by_ref/i18n/nb.po | 7 +++--- partner_deduplicate_by_ref/i18n/nl.po | 4 +-- partner_deduplicate_by_ref/i18n/nl_BE.po | 7 +++--- partner_deduplicate_by_ref/i18n/nl_NL.po | 7 +++--- partner_deduplicate_by_ref/i18n/pt.po | 4 +-- partner_deduplicate_by_ref/i18n/pt_BR.po | 7 +++--- partner_deduplicate_by_ref/i18n/pt_PT.po | 7 +++--- partner_deduplicate_by_ref/i18n/ro.po | 7 +++--- partner_deduplicate_by_ref/i18n/ru.po | 8 +++--- partner_deduplicate_by_ref/i18n/sk.po | 4 +-- partner_deduplicate_by_ref/i18n/sl.po | 7 +++--- partner_deduplicate_by_ref/i18n/sv.po | 4 +-- partner_deduplicate_by_ref/i18n/th.po | 4 +-- partner_deduplicate_by_ref/i18n/tr.po | 4 +-- partner_deduplicate_by_ref/i18n/zh_CN.po | 7 +++--- partner_deduplicate_by_ref/i18n/zh_TW.po | 7 +++--- 37 files changed, 136 insertions(+), 91 deletions(-) create mode 100644 partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot diff --git a/partner_deduplicate_by_ref/i18n/ar.po b/partner_deduplicate_by_ref/i18n/ar.po index 2cc0131a3..c39ed8aa4 100644 --- a/partner_deduplicate_by_ref/i18n/ar.po +++ b/partner_deduplicate_by_ref/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/bs.po b/partner_deduplicate_by_ref/i18n/bs.po index d86892f1f..ff11583f8 100644 --- a/partner_deduplicate_by_ref/i18n/bs.po +++ b/partner_deduplicate_by_ref/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bs\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" +"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: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot new file mode 100644 index 000000000..1f51a51a3 --- /dev/null +++ b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot @@ -0,0 +1,25 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_deduplicate_by_ref +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\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: crm_deduplicate_by_ref +#: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref +msgid "Reference" +msgstr "" + +#. module: crm_deduplicate_by_ref +#: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard +msgid "base.partner.merge.automatic.wizard" +msgstr "" + diff --git a/partner_deduplicate_by_ref/i18n/cs.po b/partner_deduplicate_by_ref/i18n/cs.po index e2ab592e0..38da492d9 100644 --- a/partner_deduplicate_by_ref/i18n/cs.po +++ b/partner_deduplicate_by_ref/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/de.po b/partner_deduplicate_by_ref/i18n/de.po index 104c37b5c..916f964a1 100644 --- a/partner_deduplicate_by_ref/i18n/de.po +++ b/partner_deduplicate_by_ref/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: Rudolf Schnapka , 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" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/en_GB.po b/partner_deduplicate_by_ref/i18n/en_GB.po index 84bb7950c..da304afe9 100644 --- a/partner_deduplicate_by_ref/i18n/en_GB.po +++ b/partner_deduplicate_by_ref/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\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" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/es.po b/partner_deduplicate_by_ref/i18n/es.po index 0defc8aab..15a053e65 100644 --- a/partner_deduplicate_by_ref/i18n/es.po +++ b/partner_deduplicate_by_ref/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * crm_deduplicate_by_ref +# * crm_deduplicate_by_ref # msgid "" msgstr "" @@ -10,6 +10,7 @@ msgstr "" "PO-Revision-Date: 2017-03-01 21:29+0000\n" "Last-Translator: <>\n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -24,4 +25,3 @@ msgstr "Referencia" #: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" msgstr "base.partner.merge.automatic.wizard" - diff --git a/partner_deduplicate_by_ref/i18n/es_CR.po b/partner_deduplicate_by_ref/i18n/es_CR.po index fa005d7e9..e58d5842a 100644 --- a/partner_deduplicate_by_ref/i18n/es_CR.po +++ b/partner_deduplicate_by_ref/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\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" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/es_EC.po b/partner_deduplicate_by_ref/i18n/es_EC.po index 387ae73e9..a5b494c58 100644 --- a/partner_deduplicate_by_ref/i18n/es_EC.po +++ b/partner_deduplicate_by_ref/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\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" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/es_MX.po b/partner_deduplicate_by_ref/i18n/es_MX.po index 197fe45cb..f92ff29bf 100644 --- a/partner_deduplicate_by_ref/i18n/es_MX.po +++ b/partner_deduplicate_by_ref/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\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" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/et.po b/partner_deduplicate_by_ref/i18n/et.po index 24f2c2783..ac63057d1 100644 --- a/partner_deduplicate_by_ref/i18n/et.po +++ b/partner_deduplicate_by_ref/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/fr.po b/partner_deduplicate_by_ref/i18n/fr.po index 84a748747..edfe229e9 100644 --- a/partner_deduplicate_by_ref/i18n/fr.po +++ b/partner_deduplicate_by_ref/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po index bb0dd824e..41051ad91 100644 --- a/partner_deduplicate_by_ref/i18n/gl.po +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # César Castro Cruz , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: César Castro Cruz , 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" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/hr.po b/partner_deduplicate_by_ref/i18n/hr.po index 8e0e73824..18e787a33 100644 --- a/partner_deduplicate_by_ref/i18n/hr.po +++ b/partner_deduplicate_by_ref/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 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" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/hu.po b/partner_deduplicate_by_ref/i18n/hu.po index 21bda7a92..b04c5b83a 100644 --- a/partner_deduplicate_by_ref/i18n/hu.po +++ b/partner_deduplicate_by_ref/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/it.po b/partner_deduplicate_by_ref/i18n/it.po index 8f26641e9..0e9854b8c 100644 --- a/partner_deduplicate_by_ref/i18n/it.po +++ b/partner_deduplicate_by_ref/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/ja.po b/partner_deduplicate_by_ref/i18n/ja.po index aba0a31db..d2264f379 100644 --- a/partner_deduplicate_by_ref/i18n/ja.po +++ b/partner_deduplicate_by_ref/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/lt.po b/partner_deduplicate_by_ref/i18n/lt.po index 59353f3ab..af9bdd550 100644 --- a/partner_deduplicate_by_ref/i18n/lt.po +++ b/partner_deduplicate_by_ref/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt\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" +"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: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/lv.po b/partner_deduplicate_by_ref/i18n/lv.po index fdcd88326..9216e293b 100644 --- a/partner_deduplicate_by_ref/i18n/lv.po +++ b/partner_deduplicate_by_ref/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/mk.po b/partner_deduplicate_by_ref/i18n/mk.po index 16254f7c5..3e5cb8881 100644 --- a/partner_deduplicate_by_ref/i18n/mk.po +++ b/partner_deduplicate_by_ref/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/mn.po b/partner_deduplicate_by_ref/i18n/mn.po index 54cf8adb9..d3e2542fd 100644 --- a/partner_deduplicate_by_ref/i18n/mn.po +++ b/partner_deduplicate_by_ref/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/nb.po b/partner_deduplicate_by_ref/i18n/nb.po index 77aeb48ee..9290f514b 100644 --- a/partner_deduplicate_by_ref/i18n/nb.po +++ b/partner_deduplicate_by_ref/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\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" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/nl.po b/partner_deduplicate_by_ref/i18n/nl.po index 1014c7610..22551d927 100644 --- a/partner_deduplicate_by_ref/i18n/nl.po +++ b/partner_deduplicate_by_ref/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # Erwin van der Ploeg , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: Erwin van der Ploeg , 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" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/nl_BE.po b/partner_deduplicate_by_ref/i18n/nl_BE.po index 86a6bd87e..8be7992a6 100644 --- a/partner_deduplicate_by_ref/i18n/nl_BE.po +++ b/partner_deduplicate_by_ref/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\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" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/nl_NL.po b/partner_deduplicate_by_ref/i18n/nl_NL.po index 4c3491aa1..86ff756f6 100644 --- a/partner_deduplicate_by_ref/i18n/nl_NL.po +++ b/partner_deduplicate_by_ref/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-08-19 01:49+0000\n" "PO-Revision-Date: 2017-08-19 01:49+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\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" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/pt.po b/partner_deduplicate_by_ref/i18n/pt.po index ad3036fbd..9a0cecacf 100644 --- a/partner_deduplicate_by_ref/i18n/pt.po +++ b/partner_deduplicate_by_ref/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/pt_BR.po b/partner_deduplicate_by_ref/i18n/pt_BR.po index f4f865b3c..3fd1f199a 100644 --- a/partner_deduplicate_by_ref/i18n/pt_BR.po +++ b/partner_deduplicate_by_ref/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\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" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/pt_PT.po b/partner_deduplicate_by_ref/i18n/pt_PT.po index 60e4ca2cc..a14d28aaa 100644 --- a/partner_deduplicate_by_ref/i18n/pt_PT.po +++ b/partner_deduplicate_by_ref/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\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" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/ro.po b/partner_deduplicate_by_ref/i18n/ro.po index ca64329ba..7d39edbdc 100644 --- a/partner_deduplicate_by_ref/i18n/ro.po +++ b/partner_deduplicate_by_ref/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # Dorin Hongu , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: Dorin Hongu , 2017\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" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/ru.po b/partner_deduplicate_by_ref/i18n/ru.po index 01a50dd89..62dfea943 100644 --- a/partner_deduplicate_by_ref/i18n/ru.po +++ b/partner_deduplicate_by_ref/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"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: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/sk.po b/partner_deduplicate_by_ref/i18n/sk.po index 70a3c7db5..423ac3d45 100644 --- a/partner_deduplicate_by_ref/i18n/sk.po +++ b/partner_deduplicate_by_ref/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # gebri , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: gebri , 2017\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" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/sl.po b/partner_deduplicate_by_ref/i18n/sl.po index 4eae5804a..bb1af9c9b 100644 --- a/partner_deduplicate_by_ref/i18n/sl.po +++ b/partner_deduplicate_by_ref/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref diff --git a/partner_deduplicate_by_ref/i18n/sv.po b/partner_deduplicate_by_ref/i18n/sv.po index d751d6237..188f4d796 100644 --- a/partner_deduplicate_by_ref/i18n/sv.po +++ b/partner_deduplicate_by_ref/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/th.po b/partner_deduplicate_by_ref/i18n/th.po index d2ad7495c..beaedcbd7 100644 --- a/partner_deduplicate_by_ref/i18n/th.po +++ b/partner_deduplicate_by_ref/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\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" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/tr.po b/partner_deduplicate_by_ref/i18n/tr.po index 8a0293125..7318ff0db 100644 --- a/partner_deduplicate_by_ref/i18n/tr.po +++ b/partner_deduplicate_by_ref/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 # Ahmet Altinisik , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: Ahmet Altinisik , 2017\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" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/zh_CN.po b/partner_deduplicate_by_ref/i18n/zh_CN.po index acb3205ac..b13490cd1 100644 --- a/partner_deduplicate_by_ref/i18n/zh_CN.po +++ b/partner_deduplicate_by_ref/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\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" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/i18n/zh_TW.po b/partner_deduplicate_by_ref/i18n/zh_TW.po index 46fdad2cb..daa0d83de 100644 --- a/partner_deduplicate_by_ref/i18n/zh_TW.po +++ b/partner_deduplicate_by_ref/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * crm_deduplicate_by_ref -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-16 03:45+0000\n" "PO-Revision-Date: 2017-03-16 03:45+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\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" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: crm_deduplicate_by_ref From 7a744ec693d400af3f1b5c114be723e47f8fa87c Mon Sep 17 00:00:00 2001 From: David Date: Wed, 26 Sep 2018 13:20:56 +0200 Subject: [PATCH 04/10] [MIG] crm_deduplicate_by_ref: Migration to 11.0 --- partner_deduplicate_by_ref/README.rst | 71 +++++++++++++------ partner_deduplicate_by_ref/__init__.py | 1 - .../{__openerp__.py => __manifest__.py} | 7 +- .../readme/CONTRIBUTORS.rst | 4 ++ .../readme/DESCRIPTION.rst | 2 + partner_deduplicate_by_ref/readme/USAGE.rst | 6 ++ partner_deduplicate_by_ref/tests/__init__.py | 1 - .../tests/test_crm_deduplicate_by_ref.py | 9 ++- .../wizards/__init__.py | 2 - .../wizards/partner_merge.py | 1 - 10 files changed, 67 insertions(+), 37 deletions(-) rename partner_deduplicate_by_ref/{__openerp__.py => __manifest__.py} (80%) create mode 100644 partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst create mode 100644 partner_deduplicate_by_ref/readme/DESCRIPTION.rst create mode 100644 partner_deduplicate_by_ref/readme/USAGE.rst diff --git a/partner_deduplicate_by_ref/README.rst b/partner_deduplicate_by_ref/README.rst index 48cda88b1..7023b170a 100644 --- a/partner_deduplicate_by_ref/README.rst +++ b/partner_deduplicate_by_ref/README.rst @@ -1,14 +1,38 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ================================= Deduplicate Contacts by reference ================================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcrm-lightgray.png?logo=github + :target: https://github.com/OCA/crm/tree/11.0/crm_deduplicate_by_ref + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-11-0/crm-11-0-crm_deduplicate_by_ref + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/111/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module extends the criteria to match duplicated contacts using the field reference. +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -19,42 +43,45 @@ To use this module, you need to: in". #. This criteria will be used for deduplicating. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/111/9.0 - Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed feedback. +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* `Arrow `_. +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ -* Pedro M. Baeza +* `Tecnativa `_: -Maintainer ----------- + * Pedro Baeza + * David Vidal + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - 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. -To contribute to this module, please visit https://odoo-community.org. +This module is part of the `OCA/crm `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_deduplicate_by_ref/__init__.py b/partner_deduplicate_by_ref/__init__.py index f8944f05c..2d2a05ce9 100644 --- a/partner_deduplicate_by_ref/__init__.py +++ b/partner_deduplicate_by_ref/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import wizards diff --git a/partner_deduplicate_by_ref/__openerp__.py b/partner_deduplicate_by_ref/__manifest__.py similarity index 80% rename from partner_deduplicate_by_ref/__openerp__.py rename to partner_deduplicate_by_ref/__manifest__.py index 4c5915ed8..23cbd8d26 100644 --- a/partner_deduplicate_by_ref/__openerp__.py +++ b/partner_deduplicate_by_ref/__manifest__.py @@ -1,18 +1,15 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - { "name": "Deduplicate Contacts by reference", - "version": "9.0.1.0.0", + "version": "11.0.1.0.0", "category": "Tools", - "website": "https://www.tecnativa.com", + "website": "https://www.github.com/OCA/crm", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, "depends": [ - "crm", "crm_deduplicate_acl", ], "data": [ diff --git a/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..758e01f87 --- /dev/null +++ b/partner_deduplicate_by_ref/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* `Tecnativa `_: + + * Pedro Baeza + * David Vidal diff --git a/partner_deduplicate_by_ref/readme/DESCRIPTION.rst b/partner_deduplicate_by_ref/readme/DESCRIPTION.rst new file mode 100644 index 000000000..e85a58959 --- /dev/null +++ b/partner_deduplicate_by_ref/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module extends the criteria to match duplicated contacts using the field +reference. diff --git a/partner_deduplicate_by_ref/readme/USAGE.rst b/partner_deduplicate_by_ref/readme/USAGE.rst new file mode 100644 index 000000000..803988f0e --- /dev/null +++ b/partner_deduplicate_by_ref/readme/USAGE.rst @@ -0,0 +1,6 @@ +To use this module, you need to: + +#. Go to *Sales > Tools > Deduplicate Contacts*. +#. Mark "Reference" in the section "Search duplicates based on duplicated data + in". +#. This criteria will be used for deduplicating. diff --git a/partner_deduplicate_by_ref/tests/__init__.py b/partner_deduplicate_by_ref/tests/__init__.py index 0e3f4a7d8..9709e8513 100644 --- a/partner_deduplicate_by_ref/tests/__init__.py +++ b/partner_deduplicate_by_ref/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import test_crm_deduplicate_by_ref diff --git a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py index 717fb0eeb..769b5c2dc 100644 --- a/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py +++ b/partner_deduplicate_by_ref/tests/test_crm_deduplicate_by_ref.py @@ -1,9 +1,8 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp.tests import common -from openerp.tools.safe_eval import safe_eval +from odoo.tests import common +from odoo.tools.safe_eval import safe_eval class TestDeduplicateByRef(common.TransactionCase): @@ -24,7 +23,7 @@ class TestDeduplicateByRef(common.TransactionCase): wizard = self.env['base.partner.merge.automatic.wizard'].create({ 'group_by_ref': True, }) - wizard.start_process_cb() + wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) @@ -39,7 +38,7 @@ class TestDeduplicateByRef(common.TransactionCase): 'group_by_ref': True, 'group_by_email': True, }) - wizard.start_process_cb() + wizard.action_start_manual_process() found_match = False for line in wizard.line_ids: match_ids = safe_eval(line.aggr_ids) diff --git a/partner_deduplicate_by_ref/wizards/__init__.py b/partner_deduplicate_by_ref/wizards/__init__.py index c93eadfed..fa92260c9 100644 --- a/partner_deduplicate_by_ref/wizards/__init__.py +++ b/partner_deduplicate_by_ref/wizards/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# © 2016 Antiun Ingeniería S.L. - Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import partner_merge diff --git a/partner_deduplicate_by_ref/wizards/partner_merge.py b/partner_deduplicate_by_ref/wizards/partner_merge.py index e39a9da50..c930600a0 100644 --- a/partner_deduplicate_by_ref/wizards/partner_merge.py +++ b/partner_deduplicate_by_ref/wizards/partner_merge.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). From 8754dedd9742f59a2e50c4e2fdf2ddb6ddb220c4 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Wed, 26 Sep 2018 16:45:37 +0000 Subject: [PATCH 05/10] [UPD] Update crm_deduplicate_by_ref.pot --- partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot index 1f51a51a3..01b8414d1 100644 --- a/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot +++ b/partner_deduplicate_by_ref/i18n/crm_deduplicate_by_ref.pot @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 11.0\n" "Report-Msgid-Bugs-To: \n" "Last-Translator: <>\n" "Language-Team: \n" From 14660e6ae0d86c5250d3b8325f278cbeba4d8987 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Mon, 1 Oct 2018 04:47:21 +0200 Subject: [PATCH 06/10] [UPD] README.rst --- .../static/description/index.html | 435 ++++++++++++++++++ 1 file changed, 435 insertions(+) create mode 100644 partner_deduplicate_by_ref/static/description/index.html diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html new file mode 100644 index 000000000..eaed6c4ff --- /dev/null +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -0,0 +1,435 @@ + + + + + + +Deduplicate Contacts by reference + + + +

+

Deduplicate Contacts by reference

+ + +

Beta License: AGPL-3 OCA/crm Translate me on Weblate Try me on Runbot

+

This module extends the criteria to match duplicated contacts using the field +reference.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Sales > Tools > Deduplicate Contacts.
  2. +
  3. Mark “Reference” in the section “Search duplicates based on duplicated data +in”.
  4. +
  5. This criteria will be used for deduplicating.
  6. +
+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+ +
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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

+

This module is part of the OCA/crm project on GitHub.

+

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

+
+
+
+ + From b49b7201f2c3025883fa6ada64e0841d958e556d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marta=20V=C3=A1zquez=20Rodr=C3=ADguez?= Date: Mon, 4 Feb 2019 08:49:29 +0000 Subject: [PATCH 07/10] Translated using Weblate (Galician) Currently translated at 100.0% (2 of 2 strings) Translation: crm-11.0/crm-11.0-crm_deduplicate_by_ref Translate-URL: https://translation.odoo-community.org/projects/crm-11-0/crm-11-0-crm_deduplicate_by_ref/gl/ --- partner_deduplicate_by_ref/i18n/gl.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/partner_deduplicate_by_ref/i18n/gl.po b/partner_deduplicate_by_ref/i18n/gl.po index 41051ad91..1824118c7 100644 --- a/partner_deduplicate_by_ref/i18n/gl.po +++ b/partner_deduplicate_by_ref/i18n/gl.po @@ -9,14 +9,15 @@ msgstr "" "Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-16 03:45+0000\n" -"PO-Revision-Date: 2017-03-16 03:45+0000\n" -"Last-Translator: César Castro Cruz , 2017\n" +"PO-Revision-Date: 2019-02-04 10:50+0000\n" +"Last-Translator: Marta Vázquez Rodríguez \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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.4\n" #. module: crm_deduplicate_by_ref #: model:ir.model.fields,field_description:crm_deduplicate_by_ref.field_base_partner_merge_automatic_wizard_group_by_ref @@ -26,4 +27,4 @@ msgstr "Referencia" #. module: crm_deduplicate_by_ref #: model:ir.model,name:crm_deduplicate_by_ref.model_base_partner_merge_automatic_wizard msgid "base.partner.merge.automatic.wizard" -msgstr "" +msgstr "'base.partner.merge.automatic.wizard'" From 2b7f9b0c6a03dd30532eb48bea56c37879298739 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 29 Jul 2019 02:48:58 +0000 Subject: [PATCH 08/10] [UPD] README.rst --- partner_deduplicate_by_ref/static/description/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partner_deduplicate_by_ref/static/description/index.html b/partner_deduplicate_by_ref/static/description/index.html index eaed6c4ff..d0892925f 100644 --- a/partner_deduplicate_by_ref/static/description/index.html +++ b/partner_deduplicate_by_ref/static/description/index.html @@ -3,7 +3,7 @@ - + Deduplicate Contacts by reference