From 2edd9f4b7dd525fbc0481482e9944518c881ff5f Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:07:41 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 11 ++ __manifest__.py | 23 ++++ data/ir_action.xml | 16 +++ data/ir_cron.xml | 15 +++ data/mail_templates.xml | 18 +++ i18n/ar.po | 125 +++++++++++++++++++++ i18n/bg.po | 117 ++++++++++++++++++++ i18n/ca.po | 127 +++++++++++++++++++++ i18n/crm_iap_enrich.pot | 112 +++++++++++++++++++ i18n/cs.po | 124 +++++++++++++++++++++ i18n/da.po | 121 ++++++++++++++++++++ i18n/de.po | 124 +++++++++++++++++++++ i18n/es.po | 124 +++++++++++++++++++++ i18n/es_419.po | 124 +++++++++++++++++++++ i18n/et.po | 125 +++++++++++++++++++++ i18n/fa.po | 117 ++++++++++++++++++++ i18n/fi.po | 124 +++++++++++++++++++++ i18n/fr.po | 124 +++++++++++++++++++++ i18n/he.po | 122 +++++++++++++++++++++ i18n/hr.po | 110 +++++++++++++++++++ i18n/hu.po | 117 ++++++++++++++++++++ i18n/id.po | 124 +++++++++++++++++++++ i18n/it.po | 124 +++++++++++++++++++++ i18n/ja.po | 118 ++++++++++++++++++++ i18n/ko.po | 119 ++++++++++++++++++++ i18n/lb.po | 104 ++++++++++++++++++ i18n/lt.po | 118 ++++++++++++++++++++ i18n/lv.po | 117 ++++++++++++++++++++ i18n/mn.po | 108 ++++++++++++++++++ i18n/nb.po | 108 ++++++++++++++++++ i18n/nl.po | 124 +++++++++++++++++++++ i18n/pl.po | 123 +++++++++++++++++++++ i18n/pt.po | 116 ++++++++++++++++++++ i18n/pt_BR.po | 124 +++++++++++++++++++++ i18n/ro.po | 111 +++++++++++++++++++ i18n/ru.po | 123 +++++++++++++++++++++ i18n/sk.po | 121 ++++++++++++++++++++ i18n/sl.po | 117 ++++++++++++++++++++ i18n/sr.po | 124 +++++++++++++++++++++ i18n/sv.po | 124 +++++++++++++++++++++ i18n/th.po | 122 +++++++++++++++++++++ i18n/tr.po | 125 +++++++++++++++++++++ i18n/uk.po | 124 +++++++++++++++++++++ i18n/vi.po | 121 ++++++++++++++++++++ i18n/zh_CN.po | 117 ++++++++++++++++++++ i18n/zh_TW.po | 117 ++++++++++++++++++++ models/__init__.py | 5 + models/crm_lead.py | 170 +++++++++++++++++++++++++++++ models/res_config_settings.py | 21 ++++ tests/__init__.py | 5 + tests/test_crm_lead_merge.py | 26 +++++ tests/test_lead_enrich.py | 71 ++++++++++++ views/crm_lead_views.xml | 20 ++++ views/res_config_settings_view.xml | 15 +++ 54 files changed, 5326 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 data/ir_action.xml create mode 100644 data/ir_cron.xml create mode 100644 data/mail_templates.xml create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/crm_iap_enrich.pot create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lb.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/mn.po create mode 100644 i18n/nb.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ro.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/crm_lead.py create mode 100644 models/res_config_settings.py create mode 100644 tests/__init__.py create mode 100644 tests/test_crm_lead_merge.py create mode 100644 tests/test_lead_enrich.py create mode 100644 views/crm_lead_views.xml create mode 100644 views/res_config_settings_view.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..7198028 --- /dev/null +++ b/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models + + +def _synchronize_cron(env): + cron = env.ref('crm_iap_enrich.ir_cron_lead_enrichment') + if cron: + config = env['ir.config_parameter'].get_param('crm.iap.lead.enrich.setting', 'auto') + cron.active = config == 'auto' diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..719ecee --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Lead Enrichment', + 'summary': 'Enrich Leads/Opportunities using email address domain', + 'category': 'Sales/CRM', + 'version': '1.1', + 'depends': [ + 'iap_crm', + 'iap_mail', + ], + 'data': [ + 'data/ir_cron.xml', + 'data/ir_action.xml', + 'data/mail_templates.xml', + 'views/crm_lead_views.xml', + 'views/res_config_settings_view.xml', + ], + 'post_init_hook': '_synchronize_cron', + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/data/ir_action.xml b/data/ir_action.xml new file mode 100644 index 0000000..d49171b --- /dev/null +++ b/data/ir_action.xml @@ -0,0 +1,16 @@ + + + + + Enrich + + + code + + if records: + records.iap_enrich() + + + + + diff --git a/data/ir_cron.xml b/data/ir_cron.xml new file mode 100644 index 0000000..8817afd --- /dev/null +++ b/data/ir_cron.xml @@ -0,0 +1,15 @@ + + + + CRM: enrich leads (IAP) + + + code + model._iap_enrich_leads_cron() + 1 + hours + -1 + + + + diff --git a/data/mail_templates.xml b/data/mail_templates.xml new file mode 100644 index 0000000..ee6fba0 --- /dev/null +++ b/data/mail_templates.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..ae9ad75 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Malaz Abuidris , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Malaz Abuidris , 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" لم يتم العثور على بيانات الشركة بناءً على عنوان البريد الإلكتروني أو " +"أن عنوان البريد الإلكتروني تابع لمزود عناوين البريد الإلكتروني. لم يتم " +"استهلاك أي رصيد. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"تعذر تنفيذ عملية الإثراء لأن عنوان البريد الإلكتروني لا يبدو " +"صالحاً. " + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "السماح بالإثراء اليدوي " + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "حدث خطأ أثناء عملية إثراء العميل المهتم " + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" +"إدارة علاقات العملاء: إثراء العملاء المهتمين (الوكيل المدرك للهوية IAP) " + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "تهيئة الإعدادات " + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "إثراء " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "إثراء العملاء المهتمين باستخدام بيانات الشركة " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "إثراء الفرص باستخدام بيانات الشركة " + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "تم الإثراء " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "إثراء العميل المهتم (بناءً على عنوان البريد الإلكتروني) " + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "تم إثراء العميل المهتم بناءً على عنوان البريد الإلكتروني " + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "عميل مهتم/فرصة " + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "ليس هناك رصيد كافٍ لإثراء العملاء المهتمين. " + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "لقد تم إثراء العملاء المهتمين/الفرص بنجاح " + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"إذا ما كانت خدمة الوكيل المدرك للهوية (IAP) لإثراء العميل المهتم بناءً على " +"عنوان البريد الإلكتروني قد تم تنفيذها لهذا العميل المهتم أم لا. " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..ce21c69 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# KeyVillage, 2023 +# Rosen Vladimirov , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rosen Vladimirov , 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Лийд / Възможност" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..89fda2a --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Óscar Fonseca , 2023 +# marcescu, 2023 +# Ivan Espinola, 2023 +# Manel Fernandez Ramirez , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Manel Fernandez Ramirez , 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"No s'han trobat dades de l'empresa basades en l'adreça de correu " +"electrònic o l'adreça de correu electrònic és un dels proveïdors de correu " +"electrònic. No s'ha consumit cap crèdit." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"L'enriquiment no s'ha pogut fer perquè l'adreça de correu electrònic " +"no sembla vàlida." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Permet l'enriquiment manual" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: enriquiment de clients amb iniciatives (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Paràmetres de configuració" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enriquiment" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enriquiment del client potencial amb les dades de l'empresa" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enriqueix l'oportunitat amb les dades de l'empresa" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enriquiment fet" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" +"Enriquiment de client potencial (basat en l'adreça de correu electrònic)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Enriquiment enriquit basat en l'adreça de correu electrònic" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciativa/Oportunitat" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "No hi ha crèdits suficients per a l'enriquiment de plom" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Les iniciatives/avantatges s'han enriquit correctament" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Si el servei IAP per a l'enriquiment de client potencial basat en el correu " +"electrònic s'ha realitzat en aquest client." diff --git a/i18n/crm_iap_enrich.pot b/i18n/crm_iap_enrich.pot new file mode 100644 index 0000000..4c322b7 --- /dev/null +++ b/i18n/crm_iap_enrich.pot @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 21:55+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_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..136d1ce --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Žádné údaje o společnosti nebo nalezené na základě e-mailové adresy " +"nebo e-mailové adresy nejsou poskytovateli e-mailových služeb. Žádný kredit " +"nebyl spotřebován." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Obohacení nebylo možné provést, protože e-mailová adresa nevypadá jako" +" platná." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Umožnit manuální rozšíření" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: Obohatit potenciální zákazníky (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurační nastavení" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Rozšíření" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Obohacování proběhlo" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Rozšíření potenciálních zákazníků o e-mailovou adresu" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospekt/příležitost" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Služba IAP byla poskytnuta na rozšíření Potenciálních zákazníků na základě " +"e-mailu." diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..b2c221e --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Mads Søndergaard, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Ingen virksomheds data fundet ud fra email adressen, eller email " +"adressen tilhører en email udbyder. Ingen kredit bliv forbrugt. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Tillad manuel berigelse" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: berig kundeemne (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Berig" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Berigelse fuldført" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Kundeemne beriget baseret på email adresse" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Kundeemne/Salgsmulighed" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Hvorvidt IAP service for kundeemne berigelse baseret på email er blevet " +"udført på dette kundeemne." diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..cf11850 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Es wurden keine Unternehmensdaten anhand der E-Mail-Adresse gefunden " +"oder die E-Mail-Adresse gehört zu einem E-Mail-Anbieter. Es wurde kein " +"Guthaben verbraucht. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Die Anreicherung konnte nicht durchgeführt werden, weil die E-Mail-" +"Adresse nicht gültig erscheint." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Manuelle Anreicherung erlauben" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Während der Lead-Anreicherung ist ein Fehler aufgetreten" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: Leads anreichern (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationseinstellungen " + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Anreichern" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Lead mit Unternehmensdaten anreichern" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Verkaufschance mit Unternehmensdaten anreichern" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Anreicherung erledigt" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Anreicherung von Leads (basierend auf E-Mail-Adressen)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead angereichert basierend auf der E-Mail-Adresse" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Verkaufschance" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Nicht genug Guthaben für Lead-Anreicherung" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Die Leads/Verkaufschancen wurden erfolgreich angereichert" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Zeigt an, ob der IAP-Service zur Anreicherung des Leads basierend auf der " +"E-Mail-Adresse ausgeführt wurde" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..02d022a --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"No se encontraron datos de la empresa basado en la dirección de correo" +" electrónico ó la dirección de correo es de un proveedor de correos " +"genérico. No se han consumido créditos. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"No se pudo hacer el enriquecimiento ya que la dirección de correo no " +"es válida." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Permitir mejoras manuales" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Ocurrió un error al enriquecer los leads" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: enriquece leads (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enriquecer" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enriquecer lead con la información de la empresa" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enriquecer oportunidad con información de la empresa" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enriquecimiento hecho" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Enriquecimiento de leads (basado en la dirección de correo)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Iniciativa enriquecida basado en dirección de correo" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Oportunidad" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "No hay suficientes créditos para enriquecer sus leads" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Los leads y las oportunidades se enriquecieron con éxito." + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Si se ha enriquecido esta iniciativa usando el servicio de enriquecimiento " +"de leads IAP basado en dirección de correo." diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..52aa97f --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Fernanda Alvarez, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Fernanda Alvarez, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"No se encontraron datos de la empresa según la dirección de correo " +"electrónico o la dirección de correo es de un proveedor de correos genérico." +" No se consumieron créditos. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"No se pudo hacer el enriquecimiento ya que la dirección de correo no " +"es válida." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Permitir enriquecimiento manual" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Ocurrió un error al enriquecer los leads." + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: enriquecer leads (compras dentro de la aplicación)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Ajustes de configuración" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enriquecer" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enriquecer lead con información de la empresa" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enriquecer oportunidad con información de la empresa" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enriquecimiento terminado" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Enriquecimiento de leads (según la dirección de correo electrónico)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead enriquecido según la dirección de correo electrónico" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/oportunidad" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "No cuenta con créditos suficientes para enriquecer sus leads" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Los leads y las oportunidades se enriquecieron con éxito." + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Si el servicio de compras dentro de la aplicación para el enriquecimiento de" +" leads basado en correo electrónico se ha realizado en este lead." diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..bf53bac --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# JanaAvalah, 2023 +# Triine Aavik , 2023 +# Leaanika Randmets, 2023 +# Algo Kärp , 2023 +# Mihkel avalah, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Mihkel avalah, 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"E-posti aadressi või e-posti aadressi põhjal leitud ettevõtte andmed " +"ei kuulu e-posti teenuse pakkujate hulka. Krediiti ei kasutatud." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Andmete täiendamine ei õnnestunud, kuna puudus e-posti aadress." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Luba manuaalselt andmeid täiendada" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Müügivihje täiendamisel ilmnes viga" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: täienda müügivihjeid (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Täienda" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Täienda vihjet ettevõtte andmetega" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Täienda võimalust ettevõtte andmetega" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Täiendamine tehtud" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Müügivihje täiendamine (e-posti aadressi põhjal)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Müügivihjet on täiendatud e-posti aadressi põhjal" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Müügivihje/müügivõimalus" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Pole piisavalt palju punkte, et müügivihjet täiendada" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Müügivihjed/müügivõimalused edukalt täiendatud" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Kas sellele müügivihjele on tehtud meilipõhise müügivihje täiendamiseks IAP-" +"teenust." diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..095696e --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Hamed Mohammadi , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "سرنخ / فرصت" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..0d0f775 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Jarmo Kortetjärvi , 2023 +# Martin Trigaux, 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Sähköpostiosoitteen perusteella ei löytynyt yritystietoja tai " +"sähköpostiosoite on palveluntarjoajan sähköpostiosoite. Krediittejä ei " +"kulutettu. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Sähköpostiosoite ei näytä kelvolliselta. Sen tietoja ei voi " +"rikastaa." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Salli manuaalinen rikastaminen" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Liidin rikastamisen aikana tapahtui virhe" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: liidien rikastaminen (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Asetukset" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Rikasta" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Rikastuta liidejä yritystiedoilla" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Rikastuta myyntimahdollisuutta yrityksen tiedoilla" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Rikastettu" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Liidin rikastus (sähköpostiosoitteen perusteella)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Liidi rikastettu sähköpostiosoitteen perusteella" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Liidi/mahdollisuus" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Ei tarpeeksi krediittejä liidin rikastamiseen" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Liidejä tai myyntimahdollisuuksia on onnistuttu rikastamaan" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Onko tälle liidille tehty sähköpostiin perustuva rikastus IAP-palvelussa." diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..4841400 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Aucune donnée trouvée sur l'entreprise à partir de l'adresse email ou" +" l'adresse email appartient à un fournisseur d'adresses email. Aucun crédit " +"n'a été consommé. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"L'enrichissement n'a pas pu être effectué, car l'adresse email ne " +"semble pas valide." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Autoriser l'enrichissement manuel" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Une erreur s'est produite lors de l'enrichissement des pistes" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM : enrichir des pistes (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de configuration" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enrichir" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enrichir les pistes avec des données de la société" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enrichir les opportunités avec des données de la société" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enrichissement effectué" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Enrichissement de pistes (basé sur l'adresse email)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Piste enrichie à partir de l'adresse email" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Piste/opportunité" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Pas assez de crédits pour l'enrichissement de pistes" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Les pistes/opportunités ont été enrichies avec succès" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Si le service IAP pour l'enrichissement des pistes à partir de l'email a été" +" effectué pour cette piste." diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..ae7e592 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Lilach Gilliam , 2023 +# Martin Trigaux, 2023 +# ZVI BLONDER , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ZVI BLONDER , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=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: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" לא נמצאו נתוני חברה על סמך כתובת הדוא\"ל או שכתובת דוא\"ל היא של אחד " +"מספקי הדוא\"ל. לא נצרכו נקודות זכות. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"לא ניתן היה לבצע העשרת לידים מכיוון שכתובת האימייל לא נראית " +"חוקית." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "אפשר העשרה ידנית" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "ניהול קשרי לקוחות: העשר לידים (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "העשר" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "העשר לידים עם נתוני החברה" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "העשר הזדמנויות עם נתוני החברה" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "העשרה בוצעה" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "העשרת לידים (על סמך כתובת דוא\"ל)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "ליד מועשר על סמך כתובת דוא\"ל" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "ליד/הזדמנות" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "האם שירות IAP להעשרת לידים על סמך דוא\"ל בוצע על ליד זה." diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..bfa1fe3 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Bole , 2022 +# Stjepan Lovasić , 2022 +# Matej Mijoč, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~15.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:34+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Matej Mijoč, 2022\n" +"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid " No company data found based on the email address or email address is one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "Enrichment could not be done because the email address does not look valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment +#: model:ir.cron,name:crm_iap_enrich.ir_cron_lead_enrichment +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enrichment done" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potencijal/prilika" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Sent batch %s enrich requests: failed with exception %s" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Whether IAP service for lead enrichment based on email has been performed on this lead." +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..a5c8e80 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Zsolt Godó , 2023 +# Ákos Nagy , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ákos Nagy , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Érdeklődés/Lehetőség" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..bac566c --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Abe Manyo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Abe Manyo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Tidak ada data perusahaan yang ditemukan berdasarkan alamat email " +"atau alamat email adalah email penyedia. Tidak ada kredit yang digunakan. " +"" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Enrichment tidak dapat dilakukan karena alamat email tidak terlihat " +"valid." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Izinkan enrich manual" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Terjadi error pada pemerkayaan lead" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: enrich lead (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enrich" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enrich lead dengan data perusahaan" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enrich opportunity dengan data perusahaan" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enrichment selesai" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Enrichment Lead (berdasarkan alamat email)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead di-enrich berdasarkan alamat email" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospek/Peluang" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Kredit tidak mencukupi untuk Enrichment Lead" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Lead/opportunitiyes dengan sukses di-enrich" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Apakah layanan IAP untuk enrichment lead berdasarkan email telah dilakukan " +"untuk lead ini." diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..31db1b7 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Marianna Ciofani, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Marianna Ciofani, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"Non è stata trovata nessuna informazione sull'azienda sulla base della" +" mail fornita, o l'email è quella di un email provider. Non sono stati " +"consumati credit." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Non è stato possibile effettuare l'arricchimento perché l'indirizzo " +"e-mail non sembra valido." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Consenti arricchimento manuale" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Si è verificato un errore durante l'arricchimento" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: arricchimento contatti (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Arricchisci" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Arricchire il lead con i dati dell'azienda" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Arricchire l'opportunità con i dati dell'azienda" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Arricchimento effettuato" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Arricchimento del lead (basato sull'indirizzo e-mail)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Contatto arricchito in base all'indirizzo e-mail" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Contatto/Opportunità" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Non ci sono abbastanza crediti per arricchire il contatto" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "I contatti/opportunità sono stati arricchiti con successo" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Indica se su questo contatto è stato eseguito il servizio acquisti in-app " +"per l'arricchimento. " diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..6a7fb68 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Junko Augias, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Junko Augias, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"メールアドレスに基づくデータが見つからないか、メールアドレスがメールプロバイダーのものです。クレジットは消費されませんでした。" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "メールアドレスが有効でないため、情報付与を実行できませんでした。" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "マニュアル情報付与を許可する" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "リードエンリッチメント中にエラーが発生しました" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM:リード情報付与(IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "情報付与" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "リードの会社データ情報を付与" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "会社データで案件に情報付与する" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "情報付与されました" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "リード情報付与(メールアドレスに基づく)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "メールアドレスに基づきリードの情報が付与されました" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "リード / 案件" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "リード情報付与用のクレジットが不足しています" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "リード/案件が無事情報付与されました" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "Eメールに基づくリード情報付与のためのIAPサービスが、このリードに対して実行されたかどうか。" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..adba9da --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Daye Jeong, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Daye Jeong, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" 이메일 주소 또는 이메일 주소를 기반으로 하는 회사 데이터가 이메일 제공자 중 하나가 아닙니다. 크레딧이 소비되지 " +"않았습니다. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "유효하지 않은 이메일 주소이기 때문에 보완할 수 없습니다." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "수동 강화 허용" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "영업제안을 보안하는 동안 오류가 발생했습니다." + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM : 영업제안 강화(인앱결제)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "환경 설정" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "강화" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "회사 데이터로 영업제안을 보완합니다." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "회사 데이터로 영업기회를 보완합니다." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "강화 완료" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "영업제안 보완 (이메일 주소 기반)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "이메일 주소를 기반으로 영업제안이 강화됨" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "영업제안/영업기회" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "영업제안을 보완하기 위한 크레딧이 부족합니다." + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "영업제안/영업기회가 성공적으로 보완되었습니다." + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "이 영업제안에 대해 이메일 기반 영업제안 강화를 위한 IAP 서비스가 수행되었는지 여부." diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..ac18178 --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_lead_enrich +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:34+0000\n" +"PO-Revision-Date: 2019-09-09 12:33+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid " No company data found based on the email address or email address is one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "Enrichment could not be done because the email address does not look valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment +#: model:ir.cron,name:crm_iap_enrich.ir_cron_lead_enrichment +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Sent batch %s enrich requests: failed with exception %s" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Whether IAP service for lead enrichment based on email has been performed on this lead." +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..954b03c --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Linas Versada , 2023 +# Jonas Zinkevicius , 2023 +# Andrius Laukavičius , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Andrius Laukavičius , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Leisti praturtinti rankiniu būdu" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: Praturtinti iniciatyvas (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Praturtinti" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciatyva/Galimybė" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..0a495cf --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Armīns Jeltajevs , 2023 +# Arnis Putniņš , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Arnis Putniņš , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas uzstādījumi" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Opportunity" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..f989b3c --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Martin Trigaux, 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~15.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:34+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Martin Trigaux, 2022\n" +"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid " No company data found based on the email address or email address is one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "Enrichment could not be done because the email address does not look valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment +#: model:ir.cron,name:crm_iap_enrich.ir_cron_lead_enrichment +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Сэжим/Боломж" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Sent batch %s enrich requests: failed with exception %s" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Whether IAP service for lead enrichment based on email has been performed on this lead." +msgstr "" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..0a74cec --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Marius Stedjan , 2022 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~15.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:34+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Marius Stedjan , 2022\n" +"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid " No company data found based on the email address or email address is one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "Enrichment could not be done because the email address does not look valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment +#: model:ir.cron,name:crm_iap_enrich.ir_cron_lead_enrichment +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Innstillinger" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/mulighet" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Sent batch %s enrich requests: failed with exception %s" +msgstr "" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Whether IAP service for lead enrichment based on email has been performed on this lead." +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..3dbe1cc --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Geen bedrijfsgegevens gevonden op basis van het e-mailadres of het " +"e-mailadres is die van een e-mailprovider. Er is geen krediet verbruikt. " +"" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Verrijking kon niet worden gedaan omdat het e-mailadres er niet geldig" +" uitziet." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Sta handmatige verrijking toe" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Er is een fout opgetreden tijdens de leadverrijking" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: leads verrijken (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Verrijken" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Verrijk lead met bedrijfsgegevens" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Verrijk kansen met bedrijfsgegevens" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Verrijking gereed" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Leadverrijking (op basis van e-mailadres)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead verrijking gebaseerd op e-mailadres" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Verkoopkans" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Niet genoeg credits om Lead te verrijken." + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "De leads/verkoopkansen zijn met succes verrijkt" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Of IAP-service voor lead verrijking op basis van e-mail is uitgevoerd op " +"deze lead." diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..8dd1444 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"Nie znaleziono danych firmy na podstawie adresu e-mail lub adres " +"e-mail jest jednym z dostawców poczty elektronicznej. Nie zużyto " +"kredytu." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Nie można wykonać wzbogacenia, ponieważ adres e-mail jest " +"nieprawidłowy." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Pozwól na ręczne wzbogacenie" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: wzbogacanie leadów (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Wzbogacenie" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Wzbogać lead o dane firmy" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Wzbogacenie szans o dane firmowe" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Wzbogacenie zakończone" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Wzbogacanie potencjalnych klientów (na podstawie adresu e-mail)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Szansa wzbogacona w oparciu o adres e-mail" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Sygnał/Szansa" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Niewystarczająca liczba punktów dla wzbogacenia leadów" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Leady/szanse zostały z powodzeniem wzbogacone" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Czy na tym leadzie została wykonana usługa IAP wzbogacenia leada na " +"podstawie wiadomości e-mail." diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..0bb8b50 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospecto / Oportunidade" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..6569fec --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Maitê Dietze, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Maitê Dietze, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Nenhum dado da empresa foi encontrado com base no endereço de e-mail " +"ou o endereço de e-mail é de um provedor de e-mail. Nenhum crédito foi " +"consumido. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"O enriquecimento não pôde ser feito porque o endereço de e-mail não " +"parece válido." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Permitir o enriquecimento manual" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Ocorreu um erro durante o enriquecimento de lead" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: enriquecer leads (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Enriquecer" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Enriquecer o lead com dados da empresa" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Enriquecer a oportunidade com dados da empresa" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Enriquecimento realizado" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Enriquecimento de leads (com base no endereço de e-mail)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead enriquecido com base no endereço de e-mail" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/oportunidade" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Não há créditos suficientes para o enriquecimento de lead" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Os leads/oportunidades foram enriquecidos com sucesso" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Se o serviço IAP para enriquecimento de leads com base em e-mail foi " +"executado nesse lead." diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..24a4a10 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Foldi Robert , 2022 +# Martin Trigaux, 2022 +# Dorin Hongu , 2022 +# Claudia Baisan, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~15.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:34+0000\n" +"PO-Revision-Date: 2022-09-22 05:45+0000\n" +"Last-Translator: Claudia Baisan, 2023\n" +"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid " No company data found based on the email address or email address is one of an email provider. No credit was consumed. " +msgstr " Nu s-au găsit date despre companie pe baza adresei de e-mail sau a adresa de e-mail aparțin unui furnizor de e-mail. Nu s-a consumat niciun credit. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "Enrichment could not be done because the email address does not look valid." +msgstr "Îmbogățirea nu a putut fi efectuată deoarece adresa de e-mail nu pare validă." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Permite îmbogățirea manuală" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment +#: model:ir.cron,name:crm_iap_enrich.ir_cron_lead_enrichment +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: îmbogățirea oportunităților (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Îmbogățire" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Îmbogățirea oportunității cu datele companiei" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Îmbogățirea oportunității cu datele companiei" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Îmbogățirea efectuată" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Îmbogățirea oportunității (bazată pe adresa de e-mail)" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Oportunitate îmbogățită pe baza adresei de e-mail" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Pista/Oportunitate" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Nu există suficiente credite pentru îmbogățirea oportunității" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Sent batch %s enrich requests: failed with exception %s" +msgstr "S-au trimis cereri de îmbogățire a lotului %s: eșec cu excepția %s" + +#. module: crm_iap_enrich +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Oportunitățile au fost îmbogățite cu succes" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Whether IAP service for lead enrichment based on email has been performed on this lead." +msgstr "Indică dacă serviciul IAP pentru îmbogățirea oportunității bazată pe e-mail a " diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..906927e --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Данные о компании не найдены по адресу электронной почты или адрес " +"электронной почты принадлежит одному из провайдеров электронной почты. " +"Кредит не был использован. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Обогащение не удалось провести, потому что адрес электронной почты не " +"выглядит действительным." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Разрешить обогащение вручную" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Произошла ошибка во время обогащения свинца" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: обогащение лидов (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Параметры конфигурации" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Обогащайте" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Обогатите свинец данными о компании" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Дополните возможности данными о компании" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Обогащение сделано" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Обогащение лидов (на основе адреса электронной почты)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Обогащение лидов на основе адреса электронной почты" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Потенциальные сделки" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Недостаточно кредитов для \"Обогащения свинца" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Зацепки/возможности были успешно обогащены" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Была ли выполнена услуга IAP по обогащению свинца на основе электронной " +"почты для этого свинца." diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..0ab5144 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Žiadne údaje o spoločnosti neboli nájdené na základe e-mailovej " +"adresy alebo e-mailoé adresy nie sú poskytovateľmi e-mailových služieb. " +"Žiadny kredit nebol spotrebovaný." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Umožnite manuálne rozšírenie" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: obohatiť potenciálnu príležitosť (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Rozšírenie" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Rozšírené" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Rozšírenie potenciálnych príležitostí o emailovú adresu" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potenciálna príležitosť / obchodný prípad" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Služba IAP bola poskytnutá pre rozšírenie Potenciálnej príležitosti na " +"základe e-mailu." diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..eb9d7ed --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Grega Vavtar , 2023 +# Matjaz Mozetic , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Matjaz Mozetic , 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Indic/Priložnost" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..27b5432 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Dragan Vukosavljevic , 2023 +# Milan Bojovic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"Nisu pronađeni podaci o kompaniji na osnovu adrese e-pošte ili adresa " +"e-pošte pripada pružaocu e-pošte. Nije potrošen kredit." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Enrichment nije mogao biti obavljen jer adresa e-pošte nije " +"važeća." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Dozvoli ručno obogaćivanje" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Došlo je do greške prilikom obogaćivanja potencijalnih klijenata." + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: obogatiti potencijalne klijente (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Podešavanje konfiguracije" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Obogati" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Obogatite potencijalnog kupca podacima o kompaniji." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Obogatite priliku sa podacima o kompaniji" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Obogaćivanje završeno" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Prilike Enrichment (na osnovu email adrese)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Prilike obogaćene na osnovu email adrese" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lid/Prodajna prilika" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Nedovoljno kredita za obogaćivanje vodećih podataka" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Prilike/mogućnosti su uspešno obogaćene" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Da li je izvršena usluga IAP za obogaćivanje potencijalnih kupaca na osnovu " +"e-pošte za ovog potencijalnog kupca." diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..f614cdf --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Chrille Hedberg , 2023 +# Lasse L, 2023 +# Mikael Åkerberg , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Mikael Åkerberg , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +"Ingen företagsinformation hittades baserat på e-postadressen eller så " +"är e-postadressen via en leverantör. Ingen kredit har använts." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Berikning kunde inte göras eftersom e-postadressen inte ser giltig " +"ut." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Tillåt manuell ifyllnad" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: berika leads (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Inställningar" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Berika" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Berika lead med företagsdata" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Berika möjligheten med företagsdata" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Berikning genomförd" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Lead berikning (baserat på e-postadress)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead berikad baserat på e-postadress" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Affärsmöjlighet/Möjlighet" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Inte tillräckligt med poäng för Lead berikning" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Affärsmöjligheter/möjligheterna har framgångsrikt berikats" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Oavsett om IAP-tjänst för leads berikning baserat på e-post har utförts på " +"denna affärsmöjlighet." diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..86884e5 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2023\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" ไม่พบข้อมูลบริษัทตามที่อยู่อีเมล " +"หรือที่อยู่อีเมลที่เป็นหนึ่งในผู้ให้บริการอีเมล ซึ่งไม่มีการใช้เครดิต " +"" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "ไม่สามารถเพิ่มได้เนื่องจากที่อยู่อีเมลไม่ถูกต้อง" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "อนุญาตให้เพิ่มด้วยตนเอง" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "เกิดข้อผิดพลาดระหว่างการเพิ่มข้อมูลลูกค้าเป้าหมาย" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: เพิ่มลูกค้าเป้าหมาย (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "ตั้งค่าการกำหนดค่า" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "เพิ่ม" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "อนุญาตให้เพิ่มด้วยตนเอง" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "เพิ่มโอกาสด้วยข้อมูลบริษัท" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "เพิ่มเรียบร้อย" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "การเพิ่มลูกค้าเป้าหมาย (ตามที่อยู่อีเมล)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "เพิ่มลูกค้าเป้าหมายตามที่อยู่อีเมล" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "ลูกค้าเป้าหมาย / ผู้ที่มีโอกาสจะซื้อ" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "เครดิตไม่เพียงพอสำหรับการเพิ่มลูกค้าเป้าหมาย" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "ลูกค้าเป้าหมาย/ผู้ที่มีโอกาสจะซื้อ ได้รับการปรับปรุงให้สมบูรณ์แล้ว" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"บริการ IAP " +"สำหรับเพิ่มลูกค้าเป้าหมายตามอีเมลได้รับการดำเนินการกับลูกค้าเป้าหมายนี้แล้วหรือไม่" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..49e29aa --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# abc Def , 2023 +# Halil, 2023 +# Murat Kaplan , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Murat Kaplan , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" E-posta adresine veya e-posta adresine dayalı olarak hiçbir şirket " +"verisi bulunamadı, bir e-posta sağlayıcısından biri değildir. Kredi " +"kullanılmadı. " + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"E-posta adresi geçerli görünmediğinden zenginleştirme " +"yapılamadı." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Manuel zenginleştirmeye izin ver" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: adayları zenginleştirin (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Zenginleştirme" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Adayı şirket verileriyle zenginleştirin" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Şirket verileriyle fırsatı zenginleştirin" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Zenginleştirme yapıldı" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Aday Zenginleştirme (e-posta adresine göre)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "E-posta adresine göre zenginleştirilmiş aday" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Aday/Fırsat" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Aday Zenginleştirme için yeterli kredi yok" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Adaylar/fırsatlar başarıyla zenginleştirildi" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"E-postaya dayalı aday zenginleştirme için IAP hizmetinin bu aday üzerinde " +"gerçekleştirilip gerçekleştirilmediği." diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..84aed13 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Alina Lisnenko , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Alina Lisnenko , 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Не знайдено даних компанії на основі адреси електронної пошти або " +"електронна пошта є поштою провайдера. Жодного кредиту не було використано. " +"" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Не вдалося зробити збільшення лідів, оскільки адреса електронної пошти" +" виглядає недійсною." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Дозвольте ручне отримання" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "Сталася помилка під час отримання ліда" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: збільшіть ліди (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Отримати" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Отримати ліди через дані компанії" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Отримати нагоди через дані компанії" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Збільшення виконано" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Збільшення лідів (на основі адреси електронної пошти)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Збільшення лідів на основі адреси електронної пошти" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Лід/Нагода" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Недостатньо кредитів для отримання лідів." + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Ліди/нагоди успішно отримані." + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Чи послугу IAP для збільшення лідів на основі електронної пошти було " +"застосовано на цьому ліді." diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..5889eb9 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "" +" Không tìm thấy dữ liệu công ty dựa vào địa chỉ email hoặc địa chỉ " +"email thuộc về nhà cung cấp email. Không có tín dụng được sử dụng." + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "" +"Không thể tăng cường vì có vẻ như địa chỉ email không hợp lệ." + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "Cho phép tăng cường thủ công" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM: tăng cường lead (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "Cài đặt cấu hình" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "Tăng cường" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "Tăng cường lead với dữ liệu công ty" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "Tăng cường cơ hội với dữ liệu công ty" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "Hoàn tất tăng cường" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "Tăng cường lead (dựa trên địa chỉ email)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "Lead đã được tăng cường dựa trên địa chỉ email" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Cơ hội" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "Không đủ tín dụng để Tăng cường lead." + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "Lead/cơ hội đã được tăng cường thành công" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "" +"Liệu dịch vụ IAP cho tăng cường lead dựa trên email đã được thực hiện cho " +"lead này chưa. " diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..1a1b06b --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Jeffery CHEN , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jeffery CHEN , 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "基于电子邮件地址或电子邮件地址找不到公司数据是电子邮件提供商之一。没有信用消耗。" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "因为电子邮件地址看起来无效,所以无法进行填充。" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "允许手动丰富" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "线索丰富过程中发生错误" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM:丰富线索 (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "IAP付费丰富线索" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "用公司数据充实线索" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "用公司数据丰富机会" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "丰富结束" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "丰富的线索(基于电子邮件地址)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "基于电子邮件地址的丰富线索" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "线索/商机" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "没有足够的积分用于铅富集" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "线索/机会已成功丰富" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "是否已根据此电子邮件执行基于电子邮件的IAP服务以进行线索丰富。" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..fe07807 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_iap_enrich +# +# Translators: +# Wil Odoo, 2023 +# Tony Ng, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tony Ng, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "" +" No company data found based on the email address or email address is " +"one of an email provider. No credit was consumed. " +msgstr "找不到基於電子郵件地址或電子郵件地址的公司資料是電子郵件供應商。未消耗任何點數。" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +msgid "" +"Enrichment could not be done because the email address does not look " +"valid." +msgstr "由於電子郵件地址看起來無效,因此無法進行擴充。" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button +msgid "Allow manual enrich" +msgstr "允許手動豐富" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "An error occurred during lead enrichment" +msgstr "潛在客戶豐富過程中發生錯誤" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.ir_cron_lead_enrichment_ir_actions_server +msgid "CRM: enrich leads (IAP)" +msgstr "CRM:潛在商機資訊擴充 (IAP)" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: crm_iap_enrich +#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich" +msgstr "豐富" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich lead with company data" +msgstr "利用公司資料擴充潛在客戶資訊" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form +msgid "Enrich opportunity with company data" +msgstr "利用公司資料擴充商機資訊" + +#. module: crm_iap_enrich +#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "Enrichment done" +msgstr "點數用盡" + +#. module: crm_iap_enrich +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email +#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound +msgid "Lead Enrichment (based on email address)" +msgstr "潛在客戶擴充資訊(基於電子郵件地址)" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Lead enriched based on email address" +msgstr "基於電子郵件地址的潛在商機資訊擴充" + +#. module: crm_iap_enrich +#: model:ir.model,name:crm_iap_enrich.model_crm_lead +msgid "Lead/Opportunity" +msgstr "潛在商機/商機" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "Not enough credits for Lead Enrichment" +msgstr "點數不足以豐富潛在客戶" + +#. module: crm_iap_enrich +#. odoo-python +#: code:addons/crm_iap_enrich/models/crm_lead.py:0 +#, python-format +msgid "The leads/opportunities have successfully been enriched" +msgstr "潛在客戶/銷售機會已成功豐富" + +#. module: crm_iap_enrich +#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done +msgid "" +"Whether IAP service for lead enrichment based on email has been performed on" +" this lead." +msgstr "是否針對此潛在商機執行了基於電子郵件的潛在商機資訊擴充 IAP 服務。" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..7ac0406 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import crm_lead +from . import res_config_settings diff --git a/models/crm_lead.py b/models/crm_lead.py new file mode 100644 index 0000000..4917458 --- /dev/null +++ b/models/crm_lead.py @@ -0,0 +1,170 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import datetime +import logging + +from psycopg2 import OperationalError + +from odoo import _, api, fields, models, tools +from odoo.addons.iap.tools import iap_tools + +_logger = logging.getLogger(__name__) + + +class Lead(models.Model): + _inherit = 'crm.lead' + + iap_enrich_done = fields.Boolean(string='Enrichment done', help='Whether IAP service for lead enrichment based on email has been performed on this lead.') + show_enrich_button = fields.Boolean(string='Allow manual enrich', compute="_compute_show_enrich_button") + + @api.depends('email_from', 'probability', 'iap_enrich_done', 'reveal_id') + def _compute_show_enrich_button(self): + for lead in self: + if not lead.active or not lead.email_from or lead.email_state == 'incorrect' or lead.iap_enrich_done or lead.reveal_id or lead.probability == 100: + lead.show_enrich_button = False + else: + lead.show_enrich_button = True + + @api.model + def _iap_enrich_leads_cron(self): + timeDelta = fields.datetime.now() - datetime.timedelta(hours=1) + # Get all leads not lost nor won (lost: active = False) + leads = self.search([ + ('iap_enrich_done', '=', False), + ('reveal_id', '=', False), + '|', ('probability', '<', 100), ('probability', '=', False), + ('create_date', '>', timeDelta) + ]) + leads.iap_enrich(from_cron=True) + + @api.model_create_multi + def create(self, vals_list): + leads = super(Lead, self).create(vals_list) + enrich_mode = self.env['ir.config_parameter'].sudo().get_param('crm.iap.lead.enrich.setting', 'auto') + if enrich_mode == 'auto': + cron = self.env.ref('crm_iap_enrich.ir_cron_lead_enrichment', raise_if_not_found=False) + if cron: + cron._trigger() + return leads + + def iap_enrich(self, from_cron=False): + # Split self in a list of sub-recordsets or 50 records to prevent timeouts + batches = [self[index:index + 50] for index in range(0, len(self), 50)] + for leads in batches: + lead_emails = {} + with self._cr.savepoint(): + try: + self._cr.execute( + "SELECT 1 FROM {} WHERE id in %(lead_ids)s FOR UPDATE NOWAIT".format(self._table), + {'lead_ids': tuple(leads.ids)}, log_exceptions=False) + for lead in leads: + # If lead is lost, active == False, but is anyway removed from the search in the cron. + if lead.probability == 100 or lead.iap_enrich_done: + continue + # Skip if no email (different from wrong email leading to no email_normalized) + if not lead.email_from: + continue + + normalized_email = tools.email_normalize(lead.email_from) + if not normalized_email: + lead.message_post_with_source( + 'crm_iap_enrich.mail_message_lead_enrich_no_email', + subtype_xmlid='mail.mt_note', + ) + continue + + email_domain = normalized_email.split('@')[1] + # Discard domains of generic email providers as it won't return relevant information + if email_domain in iap_tools._MAIL_DOMAIN_BLACKLIST: + lead.write({'iap_enrich_done': True}) + lead.message_post_with_source( + 'crm_iap_enrich.mail_message_lead_enrich_notfound', + subtype_xmlid='mail.mt_note', + ) + else: + lead_emails[lead.id] = email_domain + + if lead_emails: + try: + iap_response = self.env['iap.enrich.api']._request_enrich(lead_emails) + except iap_tools.InsufficientCreditError: + _logger.info('Lead enrichment failed because of insufficient credit') + if not from_cron: + self.env['iap.account']._send_no_credit_notification( + service_name='reveal', + title=_("Not enough credits for Lead Enrichment")) + # Since there are no credits left, there is no point to process the other batches + break + except Exception as e: + if not from_cron: + self.env['iap.account']._send_error_notification( + message=_('An error occurred during lead enrichment')) + _logger.info('An error occurred during lead enrichment: %s', e) + else: + if not from_cron: + self.env['iap.account']._send_success_notification( + message=_("The leads/opportunities have successfully been enriched")) + _logger.info('Batch of %s leads successfully enriched', len(lead_emails)) + self._iap_enrich_from_response(iap_response) + except OperationalError: + _logger.error('A batch of leads could not be enriched :%s', repr(leads)) + continue + # Commit processed batch to avoid complete rollbacks and therefore losing credits. + if not self.env.registry.in_test_mode(): + self.env.cr.commit() + + @api.model + def _iap_enrich_from_response(self, iap_response): + """ Handle from the service and enrich the lead accordingly + + :param iap_response: dict{lead_id: company data or False} + """ + for lead in self.search([('id', 'in', list(iap_response.keys()))]): # handle unlinked data by performing a search + iap_data = iap_response.get(str(lead.id)) + if not iap_data: + lead.write({'iap_enrich_done': True}) + lead.message_post_with_source( + 'crm_iap_enrich.mail_message_lead_enrich_notfound', + subtype_xmlid='mail.mt_note', + ) + continue + + values = {'iap_enrich_done': True} + lead_fields = ['partner_name', 'reveal_id', 'street', 'city', 'zip'] + iap_fields = ['name', 'clearbit_id', 'location', 'city', 'postal_code'] + for lead_field, iap_field in zip(lead_fields, iap_fields): + if not lead[lead_field] and iap_data.get(iap_field): + values[lead_field] = iap_data[iap_field] + + if not lead.phone and iap_data.get('phone_numbers'): + values['phone'] = iap_data['phone_numbers'][0] + if not lead.mobile and iap_data.get('phone_numbers') and len(iap_data['phone_numbers']) > 1: + values['mobile'] = iap_data['phone_numbers'][1] + if not lead.country_id and iap_data.get('country_code'): + country = self.env['res.country'].search([('code', '=', iap_data['country_code'].upper())]) + values['country_id'] = country.id + else: + country = lead.country_id + if not lead.state_id and country and iap_data.get('state_code'): + state = self.env['res.country.state'].search([ + ('code', '=', iap_data['state_code']), + ('country_id', '=', country.id) + ]) + values['state_id'] = state.id + + lead.write(values) + + template_values = iap_data + template_values['flavor_text'] = _("Lead enriched based on email address") + lead.message_post_with_source( + 'iap_mail.enrich_company', + render_values=template_values, + subtype_xmlid='mail.mt_note', + ) + + def _merge_get_fields_specific(self): + return { + ** super(Lead, self)._merge_get_fields_specific(), + 'iap_enrich_done': lambda fname, leads: any(lead.iap_enrich_done for lead in leads), + } diff --git a/models/res_config_settings.py b/models/res_config_settings.py new file mode 100644 index 0000000..658fc7f --- /dev/null +++ b/models/res_config_settings.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models + + +class ResConfigSettings(models.TransientModel): + _inherit = "res.config.settings" + + @api.model + def get_values(self): + values = super(ResConfigSettings, self).get_values() + cron = self.sudo().with_context(active_test=False).env.ref('crm_iap_enrich.ir_cron_lead_enrichment', raise_if_not_found=False) + values['lead_enrich_auto'] = 'auto' if cron and cron.active else 'manual' + return values + + def set_values(self): + super().set_values() + cron = self.sudo().with_context(active_test=False).env.ref('crm_iap_enrich.ir_cron_lead_enrichment', raise_if_not_found=False) + if cron and cron.active != (self.lead_enrich_auto == 'auto'): + cron.active = self.lead_enrich_auto == 'auto' diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..76341f5 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import test_crm_lead_merge +from . import test_lead_enrich diff --git a/tests/test_crm_lead_merge.py b/tests/test_crm_lead_merge.py new file mode 100644 index 0000000..054a51b --- /dev/null +++ b/tests/test_crm_lead_merge.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +from odoo.addons.crm.tests.test_crm_lead_merge import TestLeadMergeCommon +from odoo.tests.common import tagged, users +from odoo.tools import mute_logger + + +@tagged('lead_manage') +class TestLeadMerge(TestLeadMergeCommon): + + @users('user_sales_manager') + @mute_logger('odoo.models.unlink') + def test_merge_method_iap_enrich_done(self): + """Test that the "iap_enrich_done" is set to True if at least one lead have this value True""" + self.leads.iap_enrich_done = False + self.lead_w_contact.write({ + 'reveal_id': 'test_reveal_id', + 'iap_enrich_done': True, + }) + + leads = self.env['crm.lead'].browse(self.leads.ids)._sort_by_confidence_level(reverse=True) + + with self.assertLeadMerged(leads[0], leads, iap_enrich_done=True, reveal_id='test_reveal_id'): + leads._merge_opportunity(auto_unlink=False, max_length=None) diff --git a/tests/test_lead_enrich.py b/tests/test_lead_enrich.py new file mode 100644 index 0000000..4688635 --- /dev/null +++ b/tests/test_lead_enrich.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.crm.tests.common import TestCrmCommon +from odoo.addons.iap.tests.common import MockIAPEnrich +from odoo.tests.common import users + + +class TestLeadEnrich(TestCrmCommon, MockIAPEnrich): + + @classmethod + def setUpClass(cls): + super(TestLeadEnrich, cls).setUpClass() + cls.registry.enter_test_mode(cls.cr) + + cls.leads = cls.env['crm.lead'] + for x in range(0, 4): + cls.leads += cls.env['crm.lead'].create({ + 'name': 'Test %s' % x, + 'email_from': 'test_mail_%s@megaexample.com' % x + }) + + @classmethod + def tearDownClass(cls): + cls.registry.leave_test_mode() + super().tearDownClass() + + @users('user_sales_manager') + def test_enrich_internals(self): + leads = self.env['crm.lead'].browse(self.leads.ids) + leads[0].write({'partner_name': 'Already set', 'email_from': 'test@test1'}) + leads.flush_recordset() + with self.mockIAPEnrichGateway(email_data={'test1': {'country_code': 'AU', 'state_code': 'NSW'}}): + leads.iap_enrich() + + leads.flush_recordset() + self.assertEqual(leads[0].partner_name, 'Already set') + self.assertEqual(leads[0].country_id, self.env.ref('base.au')) + self.assertEqual(leads[0].state_id, self.env.ref('base.state_au_2')) + for lead in leads[1:]: + self.assertEqual(lead.partner_name, 'Simulator INC') + for lead in leads: + self.assertEqual(lead.street, 'Simulator Street') + + # @users('sales_manager') + # def test_enrich_error_credit(self): + # leads = self.env['crm.lead'].browse(self.leads.ids) + # with self.mockIAPEnrichGateway(sim_error='credit'): + # leads.iap_enrich() + + @users('user_sales_manager') + def test_enrich_error_jsonrpc_exception(self): + leads = self.env['crm.lead'].browse(self.leads.ids) + with self.mockIAPEnrichGateway(sim_error='jsonrpc_exception'): + leads.iap_enrich() + + for lead in leads: + self.assertEqual(lead.street, False) + + def test_lead_enrich_auto_setting(self): + cron = self.env.ref('crm_iap_enrich.ir_cron_lead_enrichment') + + config = self.env['res.config.settings'].create({ + 'lead_enrich_auto': 'manual', + }) + config.execute() + self.assertFalse(cron.active) + + config.write({'lead_enrich_auto': 'auto'}) + config.execute() + self.assertTrue(cron.active) diff --git a/views/crm_lead_views.xml b/views/crm_lead_views.xml new file mode 100644 index 0000000..151bf73 --- /dev/null +++ b/views/crm_lead_views.xml @@ -0,0 +1,20 @@ + + + + crm.lead.view.form.inherit.iap.lead.enrich + crm.lead + + + + +