summaryrefslogtreecommitdiff
path: root/addons/iap_crm
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/iap_crm
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/iap_crm')
-rw-r--r--addons/iap_crm/__init__.py4
-rw-r--r--addons/iap_crm/__manifest__.py21
-rw-r--r--addons/iap_crm/i18n/ar.po51
-rw-r--r--addons/iap_crm/i18n/bg.po51
-rw-r--r--addons/iap_crm/i18n/bn.po50
-rw-r--r--addons/iap_crm/i18n/ca.po52
-rw-r--r--addons/iap_crm/i18n/ckb.po50
-rw-r--r--addons/iap_crm/i18n/cs.po53
-rw-r--r--addons/iap_crm/i18n/da.po54
-rw-r--r--addons/iap_crm/i18n/de.po50
-rw-r--r--addons/iap_crm/i18n/el.po51
-rw-r--r--addons/iap_crm/i18n/eo.po46
-rw-r--r--addons/iap_crm/i18n/es.po54
-rw-r--r--addons/iap_crm/i18n/es_MX.po51
-rw-r--r--addons/iap_crm/i18n/et.po51
-rw-r--r--addons/iap_crm/i18n/eu.po52
-rw-r--r--addons/iap_crm/i18n/fa.po52
-rw-r--r--addons/iap_crm/i18n/fi.po53
-rw-r--r--addons/iap_crm/i18n/fr.po55
-rw-r--r--addons/iap_crm/i18n/he.po51
-rw-r--r--addons/iap_crm/i18n/hi.po46
-rw-r--r--addons/iap_crm/i18n/hr.po51
-rw-r--r--addons/iap_crm/i18n/hu.po51
-rw-r--r--addons/iap_crm/i18n/iap_crm.pot46
-rw-r--r--addons/iap_crm/i18n/id.po51
-rw-r--r--addons/iap_crm/i18n/it.po50
-rw-r--r--addons/iap_crm/i18n/ja.po52
-rw-r--r--addons/iap_crm/i18n/ka.po50
-rw-r--r--addons/iap_crm/i18n/km.po51
-rw-r--r--addons/iap_crm/i18n/ko.po52
-rw-r--r--addons/iap_crm/i18n/lt.po53
-rw-r--r--addons/iap_crm/i18n/lv.po51
-rw-r--r--addons/iap_crm/i18n/mn.po50
-rw-r--r--addons/iap_crm/i18n/nb.po51
-rw-r--r--addons/iap_crm/i18n/nl.po51
-rw-r--r--addons/iap_crm/i18n/pl.po52
-rw-r--r--addons/iap_crm/i18n/pt.po52
-rw-r--r--addons/iap_crm/i18n/pt_BR.po53
-rw-r--r--addons/iap_crm/i18n/ro.po50
-rw-r--r--addons/iap_crm/i18n/ru.po54
-rw-r--r--addons/iap_crm/i18n/si.po46
-rw-r--r--addons/iap_crm/i18n/sk.po51
-rw-r--r--addons/iap_crm/i18n/sl.po51
-rw-r--r--addons/iap_crm/i18n/sv.po51
-rw-r--r--addons/iap_crm/i18n/th.po51
-rw-r--r--addons/iap_crm/i18n/tr.po53
-rw-r--r--addons/iap_crm/i18n/uk.po50
-rw-r--r--addons/iap_crm/i18n/ur.po46
-rw-r--r--addons/iap_crm/i18n/vi.po52
-rw-r--r--addons/iap_crm/i18n/zh_CN.po54
-rw-r--r--addons/iap_crm/i18n/zh_TW.po50
-rw-r--r--addons/iap_crm/models/__init__.py4
-rw-r--r--addons/iap_crm/models/crm_lead.py10
53 files changed, 2538 insertions, 0 deletions
diff --git a/addons/iap_crm/__init__.py b/addons/iap_crm/__init__.py
new file mode 100644
index 00000000..dc5e6b69
--- /dev/null
+++ b/addons/iap_crm/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import models
diff --git a/addons/iap_crm/__manifest__.py b/addons/iap_crm/__manifest__.py
new file mode 100644
index 00000000..5dc1ee0e
--- /dev/null
+++ b/addons/iap_crm/__manifest__.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+
+{
+ 'name': "IAP / CRM",
+ 'summary': """Bridge between IAP and CRM""",
+ 'description': """Bridge between IAP and CRM""",
+ 'category': 'Hidden/Tools',
+ 'version': '1.0',
+ 'depends': [
+ 'crm',
+ 'iap_mail',
+ ],
+ 'application': False,
+ 'installable': True,
+ 'auto_install': True,
+ 'data': [
+ ],
+ 'license': 'LGPL-3',
+}
diff --git a/addons/iap_crm/i18n/ar.po b/addons/iap_crm/i18n/ar.po
new file mode 100644
index 00000000..c7a185c3
--- /dev/null
+++ b/addons/iap_crm/i18n/ar.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n"
+"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "ترشيح/فرصة"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/bg.po b/addons/iap_crm/i18n/bg.po
new file mode 100644
index 00000000..5cffc963
--- /dev/null
+++ b/addons/iap_crm/i18n/bg.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020\n"
+"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Лийд / Възможност"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/bn.po b/addons/iap_crm/i18n/bn.po
new file mode 100644
index 00000000..c5dcd04e
--- /dev/null
+++ b/addons/iap_crm/i18n/bn.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n"
+"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "লিড / সুযোগ"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/ca.po b/addons/iap_crm/i18n/ca.po
new file mode 100644
index 00000000..2773fcbd
--- /dev/null
+++ b/addons/iap_crm/i18n/ca.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Josep Anton Belchi, 2021\n"
+"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Iniciativa/Oportunitat"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/ckb.po b/addons/iap_crm/i18n/ckb.po
new file mode 100644
index 00000000..997aaeac
--- /dev/null
+++ b/addons/iap_crm/i18n/ckb.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n"
+"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ckb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/cs.po b/addons/iap_crm/i18n/cs.po
new file mode 100644
index 00000000..7ef9e8c3
--- /dev/null
+++ b/addons/iap_crm/i18n/cs.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+# trendspotter, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: trendspotter, 2021\n"
+"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potenciální zákazník / příležitost"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Reveal ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "Technické ID požadavku na odhalení provedené IAP."
diff --git a/addons/iap_crm/i18n/da.po b/addons/iap_crm/i18n/da.po
new file mode 100644
index 00000000..e728da34
--- /dev/null
+++ b/addons/iap_crm/i18n/da.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# Sanne Kristensen <sanne@vkdata.dk>, 2020
+# Mads Søndergaard, 2020
+# Mads Søndergaard <mads@vkdata.dk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n"
+"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Kundeemne/Salgsmulighed"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Afslør ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "Teknisk ID til at afsløre anmodning foretaget af IAP."
diff --git a/addons/iap_crm/i18n/de.po b/addons/iap_crm/i18n/de.po
new file mode 100644
index 00000000..629a5683
--- /dev/null
+++ b/addons/iap_crm/i18n/de.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Interessent / Chance"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/el.po b/addons/iap_crm/i18n/el.po
new file mode 100644
index 00000000..e6fe99fb
--- /dev/null
+++ b/addons/iap_crm/i18n/el.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Alexandros Kapetanios <alexandros@gnugr.org>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n"
+"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Σύσταση/Ευκαιρία"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Αποκάλυψη αναγνωριστικού"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "Τεχνική ταυτότητα αίτησης αποκάλυψης που έγινε από το IAP"
diff --git a/addons/iap_crm/i18n/eo.po b/addons/iap_crm/i18n/eo.po
new file mode 100644
index 00000000..d8d2ecbc
--- /dev/null
+++ b/addons/iap_crm/i18n/eo.po
@@ -0,0 +1,46 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/es.po b/addons/iap_crm/i18n/es.po
new file mode 100644
index 00000000..6002f3d3
--- /dev/null
+++ b/addons/iap_crm/i18n/es.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Osiris Román <osiris.roman@yachaytech.edu.ec>, 2020
+# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021
+# Daniela Cervantes <dace@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n"
+"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/oportunidad"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Mostrar ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
+"Identificación técnica de la solicitud de revelación realizada por IAP."
diff --git a/addons/iap_crm/i18n/es_MX.po b/addons/iap_crm/i18n/es_MX.po
new file mode 100644
index 00000000..a9fd6dd2
--- /dev/null
+++ b/addons/iap_crm/i18n/es_MX.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Cécile Collart <cco@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Cécile Collart <cco@odoo.com>, 2021\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/oportunidad"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Mostrar ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
+"Identificación técnica de la solicitud de revelación realizada por IAP."
diff --git a/addons/iap_crm/i18n/et.po b/addons/iap_crm/i18n/et.po
new file mode 100644
index 00000000..c1aa79e2
--- /dev/null
+++ b/addons/iap_crm/i18n/et.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Triine Aavik <triine@avalah.ee>, 2020
+# Eneli Õigus <enelioigus@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 2020\n"
+"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud (millal)"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Müügivihje/võimalus"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/eu.po b/addons/iap_crm/i18n/eu.po
new file mode 100644
index 00000000..4e1285dd
--- /dev/null
+++ b/addons/iap_crm/i18n/eu.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2021
+# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Eneko <eastigarraga@codesyntax.com>, 2021\n"
+"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Ekimena/Aukera"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/fa.po b/addons/iap_crm/i18n/fa.po
new file mode 100644
index 00000000..32537746
--- /dev/null
+++ b/addons/iap_crm/i18n/fa.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n"
+"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "سرنخ / فرصت"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/fi.po b/addons/iap_crm/i18n/fi.po
new file mode 100644
index 00000000..4789dfd1
--- /dev/null
+++ b/addons/iap_crm/i18n/fi.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020
+# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020\n"
+"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Liidi/mahdollisuus"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/fr.po b/addons/iap_crm/i18n/fr.po
new file mode 100644
index 00000000..bef05c57
--- /dev/null
+++ b/addons/iap_crm/i18n/fr.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+# Alexandra Jubert <aju@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Alexandra Jubert <aju@odoo.com>, 2021\n"
+"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Piste/opportunité"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "ID de Révélation"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
+"Identifiant technique de la requête de révélation faite par Achats intégrés."
diff --git a/addons/iap_crm/i18n/he.po b/addons/iap_crm/i18n/he.po
new file mode 100644
index 00000000..cb6ef63b
--- /dev/null
+++ b/addons/iap_crm/i18n/he.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n"
+"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "הצג שם"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "תעודה מזהה"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "שינוי אחרון ב"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "ליד/הזדמנות"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "מזהה חשיפה"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/hi.po b/addons/iap_crm/i18n/hi.po
new file mode 100644
index 00000000..8c911846
--- /dev/null
+++ b/addons/iap_crm/i18n/hi.po
@@ -0,0 +1,46 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/hr.po b/addons/iap_crm/i18n/hr.po
new file mode 100644
index 00000000..787bcc82
--- /dev/null
+++ b/addons/iap_crm/i18n/hr.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2020\n"
+"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potencijal/prilika"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/hu.po b/addons/iap_crm/i18n/hu.po
new file mode 100644
index 00000000..cccd7b1e
--- /dev/null
+++ b/addons/iap_crm/i18n/hu.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n"
+"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Érdeklődés/Lehetőség"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/iap_crm.pot b/addons/iap_crm/i18n/iap_crm.pot
new file mode 100644
index 00000000..12523c5b
--- /dev/null
+++ b/addons/iap_crm/i18n/iap_crm.pot
@@ -0,0 +1,46 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-09-29 13:45+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: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/id.po b/addons/iap_crm/i18n/id.po
new file mode 100644
index 00000000..0ea52d97
--- /dev/null
+++ b/addons/iap_crm/i18n/id.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Ryanto The <ry.the77@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Ryanto The <ry.the77@gmail.com>, 2020\n"
+"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Prospek/Peluang"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/it.po b/addons/iap_crm/i18n/it.po
new file mode 100644
index 00000000..6d903848
--- /dev/null
+++ b/addons/iap_crm/i18n/it.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Sergio Zanchetta <primes2h@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n"
+"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Contatto/Opportunità"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "ID identificazione"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "ID tecnico della richiesta di identificazione effettuata da IAP."
diff --git a/addons/iap_crm/i18n/ja.po b/addons/iap_crm/i18n/ja.po
new file mode 100644
index 00000000..61bdb293
--- /dev/null
+++ b/addons/iap_crm/i18n/ja.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020
+# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020
+# Noma Yuki, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Noma Yuki, 2020\n"
+"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "リード / 案件"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "IDを明らかにする"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "IAPによって行われた公開要求のテクニカルID。"
diff --git a/addons/iap_crm/i18n/ka.po b/addons/iap_crm/i18n/ka.po
new file mode 100644
index 00000000..e8dccb92
--- /dev/null
+++ b/addons/iap_crm/i18n/ka.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021\n"
+"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/km.po b/addons/iap_crm/i18n/km.po
new file mode 100644
index 00000000..294de350
--- /dev/null
+++ b/addons/iap_crm/i18n/km.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n"
+"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: km\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Leads/ឱកាស"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "បង្ហាញអត្តសញ្ញាណប័ណ្"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/ko.po b/addons/iap_crm/i18n/ko.po
new file mode 100644
index 00000000..517debfc
--- /dev/null
+++ b/addons/iap_crm/i18n/ko.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# JH CHOI <hwangtog@gmail.com>, 2020
+# Linkup <link-up@naver.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Linkup <link-up@naver.com>, 2020\n"
+"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "영업제안/영업기회"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "공개 ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/lt.po b/addons/iap_crm/i18n/lt.po
new file mode 100644
index 00000000..4e1e4be1
--- /dev/null
+++ b/addons/iap_crm/i18n/lt.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Andrius Laukavičius <andrius@focusate.eu>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n"
+"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Iniciatyva/Galimybė"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/lv.po b/addons/iap_crm/i18n/lv.po
new file mode 100644
index 00000000..4bfa0273
--- /dev/null
+++ b/addons/iap_crm/i18n/lv.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Arnis Putniņš <arnis@allegro.lv>, 2020
+# ievaputnina <ievai.putninai@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n"
+"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Attēlotais nosaukums"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Pēdējoreiz modificēts"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Opportunity"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/mn.po b/addons/iap_crm/i18n/mn.po
new file mode 100644
index 00000000..86468f49
--- /dev/null
+++ b/addons/iap_crm/i18n/mn.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Сэжим/Боломж"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/nb.po b/addons/iap_crm/i18n/nb.po
new file mode 100644
index 00000000..ef2c46cd
--- /dev/null
+++ b/addons/iap_crm/i18n/nb.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n"
+"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/mulighet"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/nl.po b/addons/iap_crm/i18n/nl.po
new file mode 100644
index 00000000..d89658ed
--- /dev/null
+++ b/addons/iap_crm/i18n/nl.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n"
+"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Verkoopkans"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Reveal ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "Technische ID van de revealaanvraag gedaan door IAP."
diff --git a/addons/iap_crm/i18n/pl.po b/addons/iap_crm/i18n/pl.po
new file mode 100644
index 00000000..a7af7d95
--- /dev/null
+++ b/addons/iap_crm/i18n/pl.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+# Natalia Gros <nag@odoo.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Natalia Gros <nag@odoo.com>, 2020\n"
+"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Sygnały/Szanse"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Odkryj ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/pt.po b/addons/iap_crm/i18n/pt.po
new file mode 100644
index 00000000..faeffce0
--- /dev/null
+++ b/addons/iap_crm/i18n/pt.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n"
+"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Prospecto / Oportunidade"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/pt_BR.po b/addons/iap_crm/i18n/pt_BR.po
new file mode 100644
index 00000000..e742a1f3
--- /dev/null
+++ b/addons/iap_crm/i18n/pt_BR.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020
+# Mateus Lopes <mateus1@gmail.com>, 2020
+# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020
+# Keli Brugalli <kbr@odoo.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Keli Brugalli <kbr@odoo.com>, 2020\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Oportunidade"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/ro.po b/addons/iap_crm/i18n/ro.po
new file mode 100644
index 00000000..3f9e4d03
--- /dev/null
+++ b/addons/iap_crm/i18n/ro.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Pista/Oportunitate"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/ru.po b/addons/iap_crm/i18n/ru.po
new file mode 100644
index 00000000..f8e2315a
--- /dev/null
+++ b/addons/iap_crm/i18n/ru.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Ivan Yelizariev <yelizariev@it-projects.info>, 2020
+# Vasiliy Korobatov <korobatov@gmail.com>, 2020
+# ILMIR <karamov@it-projects.info>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n"
+"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ru\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Инициатива / возможность"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Reveal ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/si.po b/addons/iap_crm/i18n/si.po
new file mode 100644
index 00000000..418a6989
--- /dev/null
+++ b/addons/iap_crm/i18n/si.po
@@ -0,0 +1,46 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: si\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/sk.po b/addons/iap_crm/i18n/sk.po
new file mode 100644
index 00000000..6cdb5e74
--- /dev/null
+++ b/addons/iap_crm/i18n/sk.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n"
+"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potenciálna príležitosť / obchodný prípad"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Odkryté ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/sl.po b/addons/iap_crm/i18n/sl.po
new file mode 100644
index 00000000..8fd59bbe
--- /dev/null
+++ b/addons/iap_crm/i18n/sl.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: matjaz k <matjaz@mentis.si>, 2021\n"
+"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Indic/Priložnost"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/sv.po b/addons/iap_crm/i18n/sv.po
new file mode 100644
index 00000000..2bf1f811
--- /dev/null
+++ b/addons/iap_crm/i18n/sv.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2021\n"
+"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Kundämnen/affärsmöjligheter"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/th.po b/addons/iap_crm/i18n/th.po
new file mode 100644
index 00000000..c08c0e0f
--- /dev/null
+++ b/addons/iap_crm/i18n/th.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Somchart Jabsung <jabsung.s@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Somchart Jabsung <jabsung.s@gmail.com>, 2020\n"
+"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "เป้าหมาย / โอกาส"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/tr.po b/addons/iap_crm/i18n/tr.po
new file mode 100644
index 00000000..34a1ad37
--- /dev/null
+++ b/addons/iap_crm/i18n/tr.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+# Umur Akın <umura@projetgrup.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Umur Akın <umura@projetgrup.com>, 2020\n"
+"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Aday/Fırsat"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Gösterim ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/uk.po b/addons/iap_crm/i18n/uk.po
new file mode 100644
index 00000000..5bcd022c
--- /dev/null
+++ b/addons/iap_crm/i18n/uk.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n"
+"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Лід/Нагода"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Reveal ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "Технічний ID запиту на виявлення, зроблений IAP."
diff --git a/addons/iap_crm/i18n/ur.po b/addons/iap_crm/i18n/ur.po
new file mode 100644
index 00000000..b2ca6c81
--- /dev/null
+++ b/addons/iap_crm/i18n/ur.po
@@ -0,0 +1,46 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr ""
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/vi.po b/addons/iap_crm/i18n/vi.po
new file mode 100644
index 00000000..2711ceac
--- /dev/null
+++ b/addons/iap_crm/i18n/vi.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Duy BQ <duybq86@gmail.com>, 2020
+# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020\n"
+"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Tiềm năng/Cơ hội"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "Reveal ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr ""
diff --git a/addons/iap_crm/i18n/zh_CN.po b/addons/iap_crm/i18n/zh_CN.po
new file mode 100644
index 00000000..4d8aca86
--- /dev/null
+++ b/addons/iap_crm/i18n/zh_CN.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020
+# Felix Yuen <fyu@odoo.com>, 2020
+# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020
+# liAnGjiA <liangjia@qq.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: liAnGjiA <liangjia@qq.com>, 2021\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "线索/商机"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "显示ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "IAP完成的请求技术ID。"
diff --git a/addons/iap_crm/i18n/zh_TW.po b/addons/iap_crm/i18n/zh_TW.po
new file mode 100644
index 00000000..c69c1a1e
--- /dev/null
+++ b/addons/iap_crm/i18n/zh_TW.po
@@ -0,0 +1,50 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * iap_crm
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-29 13:45+0000\n"
+"PO-Revision-Date: 2020-10-05 06:32+0000\n"
+"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
+
+#. module: iap_crm
+#: model:ir.model,name:iap_crm.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "線索/商機"
+
+#. module: iap_crm
+#: model:ir.model.fields,field_description:iap_crm.field_crm_lead__reveal_id
+msgid "Reveal ID"
+msgstr "顯示 ID"
+
+#. module: iap_crm
+#: model:ir.model.fields,help:iap_crm.field_crm_lead__reveal_id
+msgid "Technical ID of reveal request done by IAP."
+msgstr "IAP 完成的透露請求的技術 ID。"
diff --git a/addons/iap_crm/models/__init__.py b/addons/iap_crm/models/__init__.py
new file mode 100644
index 00000000..00140f99
--- /dev/null
+++ b/addons/iap_crm/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import crm_lead
diff --git a/addons/iap_crm/models/crm_lead.py b/addons/iap_crm/models/crm_lead.py
new file mode 100644
index 00000000..c45d9da8
--- /dev/null
+++ b/addons/iap_crm/models/crm_lead.py
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import fields, models
+
+
+class Lead(models.Model):
+ _inherit = 'crm.lead'
+
+ reveal_id = fields.Char(string='Reveal ID', help="Technical ID of reveal request done by IAP.")