19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:53 +01:00
parent dc68f80d3f
commit 7221b9ac46
610 changed files with 135477 additions and 161677 deletions

View file

@ -10,36 +10,15 @@ pip install odoo-bringout-oca-ocb-crm_iap_enrich
## Dependencies
This addon depends on:
- iap_crm
- iap_mail
## Manifest Information
- **Name**: Lead Enrichment
- **Version**: 1.1
- **Category**: Sales/CRM
- **License**: LGPL-3
- **Installable**: False
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `crm_iap_enrich`.
- Repository: https://github.com/OCA/OCB
- Branch: 19.0
- Path: addons/crm_iap_enrich
## License
This package maintains the original LGPL-3 license from the upstream Odoo project.
## Documentation
- Overview: doc/OVERVIEW.md
- Architecture: doc/ARCHITECTURE.md
- Models: doc/MODELS.md
- Controllers: doc/CONTROLLERS.md
- Wizards: doc/WIZARDS.md
- Install: doc/INSTALL.md
- Usage: doc/USAGE.md
- Configuration: doc/CONFIGURATION.md
- Dependencies: doc/DEPENDENCIES.md
- Troubleshooting: doc/TROUBLESHOOTING.md
- FAQ: doc/FAQ.md
This package preserves the original LGPL-3 license.

View file

@ -3,11 +3,8 @@
from . import models
from odoo.api import Environment, SUPERUSER_ID
def _synchronize_cron(cr, registry):
env = Environment(cr, SUPERUSER_ID, {'active_test': False})
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')

View file

@ -19,5 +19,6 @@
],
'post_init_hook': '_synchronize_cron',
'auto_install': True,
'author': 'Odoo S.A.',
'license': 'LGPL-3',
}

View file

@ -6,10 +6,8 @@
<field name="user_id" ref="base.user_root"/>
<field name="state">code</field>
<field name="code">model._iap_enrich_leads_cron()</field>
<field name="interval_number">1</field>
<field name="interval_number">24</field>
<field name="interval_type">hours</field>
<field name="numbercall">-1</field>
<field name="doall" eval="False"/>
</record>
</odoo>

View file

@ -3,14 +3,14 @@
<!-- VIEWS USED FOR MESSAGING -->
<template id="mail_message_lead_enrich_notfound">
<p>Lead Enrichment (based on email address)</p>
<div style="padding:15px;">
<div style="padding:15px;padding-left:0px;">
<span> No company data found based on the email address or email address is one of an email provider. No credit was consumed. </span>
</div>
</template>
<template id="mail_message_lead_enrich_no_email">
<p>Lead Enrichment (based on email address)</p>
<div style="padding:15px;">
<div style="padding:15px;padding-left:0px;">
<span>Enrichment could not be done because the email address does not look valid.</span>
</div>
</template>

View file

@ -1,24 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Malaz Abuidris <msea@odoo.com>, 2022
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2022\n"
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 13:38+0000\n"
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -36,91 +39,109 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>تعذر تنفيذ عملية الإثراء لأن عنوان البريد الإلكتروني لا يبدو "
"صالحاً.</span> "
"<span>تعذر تنفيذ عملية الإثراء لأن عنوان البريد الإلكتروني لا يبدو صالحاً.</"
"span>"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button
msgid "Allow manual enrich"
msgstr "السماح بالإثراء اليدوي "
msgstr "السماح بالإثراء اليدوي"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
"إدارة علاقات العملاء: إثراء العملاء المهتمين (الوكيل المدرك للهوية IAP) "
"إدارة علاقات العملاء: إثراء العملاء المهتمين (الوكيل المدرك للهوية IAP)"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_res_config_settings
msgid "Config Settings"
msgstr "تهيئة الإعدادات "
msgstr "تهيئة الإعدادات"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "إنشاء فرصة"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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 "إثراء "
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 "إثراء العملاء المهتمين باستخدام بيانات الشركة "
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 "إثراء الفرص باستخدام بيانات الشركة "
msgstr "إثراء الفرص باستخدام بيانات الشركة"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done
msgid "Enrichment done"
msgstr "تم الإثراء "
msgstr "تم الإثراء"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "المُعرف"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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 "إثراء العميل المهتم (بناءً على عنوان البريد الإلكتروني) "
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 "عميل مهتم/فرصة "
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 "ليس هناك رصيد كافٍ لإثراء العملاء المهتمين. "
msgstr "ليس هناك رصيد كافٍ لإثراء العملاء المهتمين."
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr "طلبات إثراء الدفعة المرسلة %s: فشلت باستثناء %s "
#. 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 "لقد تم إثراء العملاء المهتمين/الفرص بنجاح "
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"إذا ما كانت خدمة الوكيل المدرك للهوية (IAP) لإثراء العميل المهتم بناءً على "
"عنوان البريد الإلكتروني قد تم تنفيذها لهذا العميل المهتم أم لا. "
"عنوان البريد الإلكتروني قد تم تنفيذها لهذا العميل المهتم أم لا."
#~ msgid "Lead/Opportunity"
#~ msgstr "عميل مهتم/فرصة "
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr "طلبات إثراء الدفعة المرسلة %s: فشلت باستثناء %s "

View file

@ -1,24 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Jumshud Sultanov <cumshud@gmail.com>, 2022
# erpgo translator <jumshud@erpgo.az>, 2022
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/az/>\n"
"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -39,9 +38,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -50,6 +54,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Parametrləri Konfiqurasiya edin"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Fürsət yaradın"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Göstəriləcək Ad"
#. 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
@ -71,6 +86,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Hədəf Müştəri"
#. 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
@ -80,39 +106,24 @@ 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 "Hədəf Müştəri/Fürsət"
#. 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,24 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# KeyVillage, 2023
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023\n"
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/bg/>\n"
"Language: 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"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -39,9 +38,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -50,6 +54,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Настройки"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Създайте потенциална възможност"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -71,6 +86,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -80,39 +106,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,19 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
# * crm_iap_enrich
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:33+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/bs/>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -21,8 +27,6 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Nema pronađenih podataka o poduzeću na osnovu e-mail adrese ili "
"e-mail adresa pripada e-mail provajderu. Nije potrošen kredit. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -30,92 +34,98 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Obogaćivanje nije moglo biti urađeno jer e-mail adresa ne izgleda "
"važeće.</span>"
#. 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"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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: obogati potencijalne klijente (IAP)"
msgstr ""
# taken from hr.po
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_res_config_settings
msgid "Config Settings"
msgstr "Postavke"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Kreirajte priliku"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Prikazani naziv"
# taken from hr.po
#. 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"
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 "Obogati potencijalnog klijenta podacima o poduzeću"
msgstr ""
# taken from hr.po
#. 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 podacima tvrtke"
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"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Potencijal"
#. 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 "Obogaćivanje potencijalnih klijenata (na osnovu e-mail adrese)"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py
#, python-format
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Lead enriched based on email address"
msgstr "Potencijalni klijent obogaćen na osnovu e-mail adrese"
msgstr ""
# taken from hr.po
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead/Opportunity"
msgstr "Potencijal/prilika"
# taken from hr.po
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py
#, python-format
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Not enough credits for Lead Enrichment"
msgstr "Nema dovoljno kredita za obogaćivanje leadova"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr "Poslana serija %s zahtjeva za obogaćivanje: neuspješno sa greškom %s"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py
#, python-format
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "The leads/opportunities have successfully been enriched"
msgstr "Potencijalni klijenti/prilike su uspješno obogaćeni"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Da li je IAP usluga za obogaćivanje potencijalnih klijenata na osnovu "
"e-pošte izvršena na ovom potencijalnom klijentu."

View file

@ -1,26 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
# marcescu, 2022
# Ivan Espinola, 2022
# Noemi Pla, 2025
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Noemi Pla, 2025\n"
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ca/>\n"
"Language: 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"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -46,9 +44,14 @@ msgstr ""
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
msgid "An error occurred during lead enrichment"
msgstr "S'ha produït un error durant l'enriquiment de clients potencials"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: enriquiment de clients amb iniciatives (IAP)"
@ -57,6 +60,17 @@ msgstr "CRM: enriquiment de clients amb iniciatives (IAP)"
msgid "Config Settings"
msgstr "Paràmetres de configuració"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Crear una oportunitat"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nom mostrat"
#. 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
@ -78,6 +92,17 @@ msgstr "Enriqueix l'oportunitat amb les dades de l'empresa"
msgid "Enrichment done"
msgstr "Enriquiment fet"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Iniciativa"
#. 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
@ -88,43 +113,29 @@ 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 "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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"S'han enviat sol·licituds d'enriquiment del lot %s: ha fallat amb l'excepció"
" %s"
#. 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."
"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."
#~ msgid "Lead/Opportunity"
#~ msgstr "Iniciativa/Oportunitat"

View file

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -34,9 +34,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -45,6 +50,17 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -66,6 +82,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -75,33 +102,18 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,25 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Jiří Podhorecký, 2022
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
# Aleš Fiala <f.ales1@seznam.cz>, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Marta (wacm)" <wacm@odoo.com>, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2023\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2026-02-25 14:42+0000\n"
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\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"
"X-Generator: Weblate 5.14.3\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -37,24 +41,40 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Obohacení nebylo možné provést, protože e-mailová adresa nevypadá jako"
" platná.</span>"
"<span>Obohacení nebylo možné provést, protože e-mailová adresa nevypadá jako "
"platná.</span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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 "Nastavení konfigurace"
msgstr "Konfigurační nastavení"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Vytvořit příležitost"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -77,6 +97,17 @@ msgstr ""
msgid "Enrichment done"
msgstr "Obohacování proběhlo"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Potenciální zákazník"
#. 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
@ -86,41 +117,29 @@ 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 "Potenciální zákazník / 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"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."
"Služba IAP byla poskytnuta na rozšíření Potenciálních zákazníků na základě e-"
"mailu."
#~ msgid "Lead/Opportunity"
#~ msgstr "Potenciální zákazník / příležitost"

View file

@ -1,25 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Mads Søndergaard, 2022
# Kira Petersen, 2025
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Kira Petersen, 2025\n"
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-14 21:21+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/da/>\n"
"Language: 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"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,8 +29,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Ingen virksomheds data fundet ud fra email adressen, eller email "
"adressen tilhører en email udbyder. Ingen kredit bliv forbrugt. </span>"
"<span> Der blev ikke fundet virksomhedsdata baseret på e-mailadressen, eller "
"e-mailadressen tilhører en standard-e-mailudbyder. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -44,16 +46,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Tillad manuel berigelse"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "An error occurred during lead enrichment"
msgstr "Der opstod en fejl i forbindelse med berigelsen af kundeemnet."
#. 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
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"
msgstr "Konfigurationsindstillinger"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Opret en salgsmulighed"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Vis navn"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -76,6 +94,17 @@ msgstr "Berig salgsmulighed med virksomhedsdata"
msgid "Enrichment done"
msgstr "Berigelse fuldført"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Kundeemne"
#. 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
@ -85,41 +114,29 @@ msgstr "Kundeemneberigelse (baseret på e-mailadresse)"
#. 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"
msgstr "Kundeemneberigelse baseret på e-mailadresse"
#. 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 "Ikke tilstrækkeligt med point til kundeemneberigelse"
msgstr "Ikke tilstrækkeligt point til kundeemneberigelse"
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "The leads/opportunities have successfully been enriched"
msgstr "Kundeemner/salgsmuligheder er blevet beriget"
#. 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."
"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."
"Angiver, om IAP-tjenesten til berigelse af kundeemnet baseret på e-"
"mailadressen er blevet udført."
#~ msgid "Lead/Opportunity"
#~ msgstr "Kundeemne/Salgsmulighed"

View file

@ -1,24 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Larissa Manderfeld, 2023
# Martin Trigaux, 2023
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2025, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 2023\n"
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2026-02-13 11:23+0000\n"
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.14.3\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -44,16 +48,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Manuelle Anreicherung erlauben"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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 "
msgstr "Konfigurationseinstellungen"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Verkaufschance erstellen"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Anzeigename"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -76,6 +96,17 @@ msgstr "Verkaufschance mit Unternehmensdaten anreichern"
msgid "Enrichment done"
msgstr "Anreicherung erledigt"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -85,43 +116,34 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Gesendete Anreicherungsanfragen für Stapel %s: mit Ausnahme %s "
"fehlgeschlagen"
#. 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."
"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"
"Zeigt an, ob der IAP-Service zur Anreicherung des Leads basierend auf der E-"
"Mail-Adresse ausgeführt wurde"
#~ msgid "Lead/Opportunity"
#~ msgstr "Interessent / Chance"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Gesendete Anreicherungsanfragen für Stapel %s: mit Ausnahme %s "
#~ "fehlgeschlagen"

View file

@ -1,23 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Qaidjohar Barbhaya, 2023
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -38,16 +39,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,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 "Config Settings"
msgstr "Ρυθμίσεις διαμόρφωσης"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Δημιουργήστε μια ευκαιρία"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Εμφάνιση Ονόματος"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -70,6 +87,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "Κωδικός"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -79,39 +107,27 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Σύσταση/Ευκαιρία"

View file

@ -1,25 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Larissa Manderfeld, 2024
# Wil Odoo, 2024
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-14 21:17+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/es/>\n"
"Language: 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"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
"0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -28,8 +30,8 @@ msgid ""
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>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. </span>"
"electrónico o la dirección de correo es de un proveedor de correos genérico. "
"No se consumieron créditos. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -45,9 +47,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Permitir enriquecimiento manual"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: enriquecer leads (IAP)"
@ -56,6 +63,17 @@ msgstr "CRM: enriquecer leads (IAP)"
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Crear una oportunidad"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nombre para mostrar"
#. 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
@ -77,6 +95,17 @@ msgstr "Enriquecer oportunidad con información de la empresa"
msgid "Enrichment done"
msgstr "Enriquecimiento hecho"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -86,43 +115,29 @@ 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 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Lote enviado %s de solicitudes de enriquecimiento: falló con una excepción "
"%s"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Si se ha enriquecido este lead usando el servicio de enriquecimiento de "
"leads IAP basado en dirección de correo."
#~ msgid "Lead/Opportunity"
#~ msgstr "Iniciativa/Oportunidad"

View file

@ -1,25 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
# Fernanda Alvarez, 2023
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Fernanda Alvarez (mfar)" <mfar@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Fernanda Alvarez, 2023\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-10-30 17:02+0000\n"
"Last-Translator: \"Fernanda Alvarez (mfar)\" <mfar@odoo.com>\n"
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
"odoo-19/crm_iap_enrich/es_419/>\n"
"Language: es_419\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -28,8 +27,8 @@ msgid ""
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>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. </span>"
"electrónico o la dirección de correo es de un proveedor de correos genérico. "
"No se consumieron créditos. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -43,11 +42,16 @@ 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 "Permitir mejoras manuales"
msgstr "Permitir enriquecimiento manual"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: enriquecer leads (compras dentro de la aplicación)"
@ -56,6 +60,17 @@ msgstr "CRM: enriquecer leads (compras dentro de la aplicación)"
msgid "Config Settings"
msgstr "Ajustes de configuración"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Crear una oportunidad"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Mostrar nombre"
#. 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
@ -65,7 +80,7 @@ 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"
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
@ -77,6 +92,17 @@ msgstr "Enriquecer oportunidad con información de la empresa"
msgid "Enrichment done"
msgstr "Enriquecimiento terminado"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -86,43 +112,29 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Lote enviado %s de solicitudes de enriquecimiento: falló con una excepción "
"%s"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Si el servicio IAP para el enriquecimiento de leads según el correo "
"electrónico se ha realizado en este lead."
"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."
#~ msgid "Lead/Opportunity"
#~ msgstr "Lead/Oportunidad"

View file

@ -1,27 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Algo Kärp <algokarp@gmail.com>, 2022
# Triine Aavik <triine@avalah.ee>, 2022
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Leaanika Randmets, 2022
# JanaAvalah, 2023
#
# * crm_iap_enrich
#
# Kristina Pešehodko <kristina@avalah.ee>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: JanaAvalah, 2023\n"
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-10-29 11:40+0000\n"
"Last-Translator: Kristina Pešehodko <kristina@avalah.ee>\n"
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/et/>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -45,9 +41,14 @@ msgstr ""
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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: täienda müügivihjeid (IAP)"
@ -56,6 +57,17 @@ msgstr "CRM: täienda müügivihjeid (IAP)"
msgid "Config Settings"
msgstr "Seadistused"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Loo müügivõimalus"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Kuva nimi"
#. 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
@ -77,6 +89,17 @@ msgstr "Täienda võimalust ettevõtte andmetega"
msgid "Enrichment done"
msgstr "Täiendamine tehtud"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Müügivihje"
#. 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
@ -86,41 +109,26 @@ 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/võ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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "Saadetud koond%s täiendamise taotlusi: ebaõnnestus erandiga %s"
#. 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."
"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."

View file

@ -1,25 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Hamed Mohammadi <hamed@dehongi.com>, 2023
# Martin Trigaux, 2023
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/fa/>\n"
"Language: 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"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,9 +25,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"```html\n"
"<span>هیچ داده شرکتی بر اساس آدرس ایمیل پیدا نشد یا آدرس ایمیل متعلق به یک ارائه‌دهنده ایمیل است. هیچ اعتباری مصرف نشد.</span>\n"
"```"
"<span>هیچ داده شرکتی بر اساس آدرس ایمیل پیدا نشد یا آدرس ایمیل متعلق به یک "
"ارائه‌دهنده ایمیل است. هیچ اعتباری مصرف نشد.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -37,18 +34,22 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"```html\n"
"<span>غنی‌سازی نمی‌تواند انجام شود زیرا به نظر می‌رسد آدرس ایمیل معتبر نیست.</span>\n"
"```"
"<span>غنی‌سازی نمی‌تواند انجام شود زیرا به نظر می‌رسد آدرس ایمیل معتبر نیست.</"
"span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: غنی‌سازی سرنخ‌ها (IAP)"
@ -57,6 +58,17 @@ msgstr "CRM: غنی‌سازی سرنخ‌ها (IAP)"
msgid "Config Settings"
msgstr "تنظیمات پیکربندی"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "ایجاد یک فرصت"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -78,6 +90,17 @@ msgstr "غنی‌سازی فرصت با اطلاعات شرکت"
msgid "Enrichment done"
msgstr "غنی‌سازی انجام شد"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "شناسه"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -87,41 +110,25 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"آیا سرویس IAP برای غنی‌سازی سرنخ بر اساس ایمیل بر روی این سرنخ انجام شده "
"است."
"آیا سرویس IAP برای غنی‌سازی سرنخ بر اساس ایمیل بر روی این سرنخ انجام شده است."

View file

@ -1,25 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Martin Trigaux, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
#
# * crm_iap_enrich
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/fi/>\n"
"Language: 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"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,9 +26,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Sähköpostiosoitteen perusteella ei löytynyt yritystietoja tai "
"<span> Sähköpostiosoitteen perusteella ei löytynyt yritystietoja, tai "
"sähköpostiosoite on palveluntarjoajan sähköpostiosoite. Krediittejä ei "
"kulutettu. </span>"
"käytetty. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -37,17 +36,22 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Sähköpostiosoite ei näytä kelvolliselta. Sen tietoja ei voi "
"rikastaa.</span>"
"<span>Sähköpostiosoite ei näytä oikealta, joten tietoja ei voi rikastaa.</"
"span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: liidien rikastaminen (IAP)"
@ -56,6 +60,17 @@ msgstr "CRM: liidien rikastaminen (IAP)"
msgid "Config Settings"
msgstr "Asetukset"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Luo myyntimahdollisuus"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Näyttönimi"
#. 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
@ -70,13 +85,24 @@ 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"
msgstr "Rikastuta myyntimahdollisuutta yritystiedoilla"
#. 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:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "Tunnus"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Liidi"
#. 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
@ -86,40 +112,25 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "Lähetetty erä %s rikastuspyyntöjä epäonnistui poikkeuksella %s"
#. 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"
msgstr "Liidejä tai myyntimahdollisuuksia on rikastettu onnistuneesti"
#. 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."
"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."

View file

@ -1,25 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Jolien De Paepe, 2023
# Manon Rondou, 2024
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Manon Rondou, 2024\n"
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-14 21:09+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -45,9 +48,14 @@ msgstr ""
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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM : enrichir des pistes (IAP)"
@ -56,6 +64,17 @@ msgstr "CRM : enrichir des pistes (IAP)"
msgid "Config Settings"
msgstr "Paramètres de configuration"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Créer une opportunité"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nom d'affichage"
#. 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
@ -77,6 +96,17 @@ msgstr "Enrichir les opportunités avec des données de la société"
msgid "Enrichment done"
msgstr "Enrichissement effectué"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Piste"
#. 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
@ -86,42 +116,34 @@ msgstr "Enrichissement de pistes (basé sur l'adresse 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 "Piste enrichie à partir de l'adresse e-mail"
#. 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Demandes d'enrichissement envoyées en lot %s : échouées, à l'exception de %s"
#. 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."
"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'e-mail a "
"été effectué pour cette piste."
#~ msgid "Lead/Opportunity"
#~ msgstr "Piste/Opportunité"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Demandes d'enrichissement envoyées en lot %s : échouées, à l'exception de "
#~ "%s"

View file

@ -1,26 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
# Yoram Lavi, 2025
#
# or balmas <or@laylinetech.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Yoram Lavi, 2025\n"
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/he/>\n"
"Language: 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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
"n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -37,17 +40,22 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>לא ניתן היה לבצע העשרת לידים מכיוון שכתובת האימייל לא נראית "
"חוקית.</span>"
"<span>לא ניתן היה לבצע העשרת לידים מכיוון שכתובת האימייל לא נראית חוקית.</"
"span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "ניהול קשרי לקוחות: העשר לידים (IAP)"
@ -56,6 +64,17 @@ msgstr "ניהול קשרי לקוחות: העשר לידים (IAP)"
msgid "Config Settings"
msgstr "הגדר הגדרות"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "צור הזדמנות"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -77,6 +96,17 @@ msgstr "העשר הזדמנויות עם נתוני החברה"
msgid "Enrichment done"
msgstr "העשרה בוצעה"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "מזהה"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -86,39 +116,27 @@ 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 "אין מספיק קרדיט לביצוע Lead Enrichment"
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr "האם שירות IAP להעשרת לידים על סמך דוא\"ל בוצע על ליד זה."
#~ msgid "Lead/Opportunity"
#~ msgstr "ליד/הזדמנות"

View file

@ -1,23 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Ujjawal Pathak, 2025
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ujjawal Pathak, 2025\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -25,6 +25,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>ईमेल से कंपनी की जानकारी नहीं मिली. ईमेल किसी आम सेवा देने वाली कंपनी का है. "
"आपका कोई क्रेडिट नहीं कटा.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -38,9 +40,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -49,6 +56,17 @@ msgstr ""
msgid "Config Settings"
msgstr "कॉन्फ़िगरेशन सेटिंग"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "अवसर बनाएं"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -70,6 +88,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "आईडी"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -79,39 +108,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,26 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Bole <bole@dajmi5.com>, 2022
# Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2022
# Matej Mijoč, 2022
# Luka Carević <luka@uvid.hr>, 2025
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
# Zvonimir Galić <zvonimir.galic@viavista.ba>, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Luka Carević <luka@uvid.hr>, 2025\n"
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2026-01-23 06:06+0000\n"
"Last-Translator: Zvonimir Galić <zvonimir.galic@viavista.ba>\n"
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.14.3\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -41,9 +44,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -52,6 +60,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Postavke"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Kreiraj priliku"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Naziv"
#. 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
@ -71,7 +90,18 @@ msgstr "Obogatite priliku podacima tvrtke"
#. 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"
msgstr "Obogaćivanje završeno"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Potencijal"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -82,39 +112,27 @@ 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 "Potencijal/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 "Nema dovoljno kredita za obogaćivanje leadova"
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Potencijal/prilika"

View file

@ -1,24 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Zsolt Godó <zsolttokio@gmail.com>, 2022
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2022\n"
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -39,16 +42,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,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 "Beállítások módosítása"
msgstr "Beállítások"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Lehetőség létrehozása"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Megjelenített név"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -71,6 +90,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Érdeklődés"
#. 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
@ -80,39 +110,27 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Érdeklődés/Lehetőség"

View file

@ -1,113 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,24 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Abe Manyo, 2023
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Abe Manyo (abem)" <abem@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Abe Manyo, 2023\n"
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/id/>\n"
"Language: 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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,8 +28,8 @@ msgid ""
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Tidak ada data perusahaan yang ditemukan berdasarkan alamat email "
"atau alamat email adalah email penyedia. Tidak ada kredit yang digunakan. "
"</span>"
"atau alamat email adalah email penyedia. Tidak ada kredit yang digunakan. </"
"span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -42,11 +43,16 @@ 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 "Izinkan enrichment manual"
msgstr "Izinkan enrich manual"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: enrich lead (IAP)"
@ -55,6 +61,17 @@ msgstr "CRM: enrich lead (IAP)"
msgid "Config Settings"
msgstr "Pengaturan Konfigurasi"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Buat Peluang"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nama Tampilan"
#. 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
@ -76,6 +93,17 @@ msgstr "Enrich opportunity dengan data perusahaan"
msgid "Enrichment done"
msgstr "Enrichment selesai"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Prospek"
#. 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
@ -85,41 +113,26 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "Batch terkirim %s permintaan enrich: gagal dengan pengecualian %s"
#. 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."
"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."

View file

@ -1,117 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Kristófer Arnþórsson, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Kristófer Arnþórsson, 2024\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Stillingarvalkostir"
#. 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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,25 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Sergio Zanchetta <primes2h@gmail.com>, 2023
# Marianna Ciofani, 2024
#
# Sergio Zanchetta <primes2h@gmail.com>, 2022
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marianna Ciofani, 2024\n"
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-14 21:08+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n != 0 && n % 1000000 == "
"0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -28,8 +30,8 @@ msgid ""
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>In base all'indirizzo e-mail non è stata trovato alcun dato "
"sull'azienda, oppure l'indirizzo corrisponde a un fornitore di indirizzi "
"e-mail. Non sono stati utilizzati credit.</span>"
"sull'azienda, oppure l'indirizzo corrisponde a un fornitore di indirizzi e-"
"mail. Non sono stati utilizzati credit.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -45,9 +47,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Consenti arricchimento manuale"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: arricchimento lead (IAP)"
@ -56,6 +63,17 @@ msgstr "CRM: arricchimento lead (IAP)"
msgid "Config Settings"
msgstr "Impostazioni di configurazione"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Crea un'opportunità"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nome visualizzato"
#. 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
@ -77,6 +95,17 @@ msgstr "Arricchire l'opportunità con i dati dell'azienda"
msgid "Enrichment done"
msgstr "Arricchimento completato"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Contatto"
#. 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
@ -86,43 +115,29 @@ msgstr "Arricchimento lead (in base all'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 "Lead 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 "Lead/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 "Crediti non sufficienti per l'arricchimento del lead"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Domande di arricchimento inviate in gruppi %s: non riuscite ad eccezione di "
"%s"
#. 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 lead/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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Indica se su questo lead è stato eseguito il servizio IAP per "
"l'arricchimento basato sull'e-mail."
#~ msgid "Lead/Opportunity"
#~ msgstr "Contatto/Opportunità"

View file

@ -1,25 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 2022
# Junko Augias, 2023
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Junko Augias (juau)" <juau@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Junko Augias, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-05 11:22+0000\n"
"Last-Translator: \"Junko Augias (juau)\" <juau@odoo.com>\n"
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,30 +26,48 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>Eメールアドレスに基づくデータが見つからないか、EメールアドレスがEメールプロバイダーのものです。クレジットは消費されませんでした。</span>"
"<span>メールアドレスに基づくデータが見つからないか、メールアドレスがメールプ"
"ロバイダーのものです。クレジットは消費されませんでした。</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr "<span>メールアドレスが有効でないため、情報付与を実行できませんでした。</span>"
msgstr ""
"<span>メールアドレスが有効でないため、情報付与を実行できませんでした。</span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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 "コンフィグ設定"
msgstr "構成設定"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "案件作成"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "表示名"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -73,6 +90,17 @@ msgstr "会社データで案件に情報付与する"
msgid "Enrichment done"
msgstr "情報付与されました"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -82,39 +110,26 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "一括送信された%s情報付与リクエスト例外%sで失敗しました"
#. 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サービスが、このリードに対して実行されたかどうか。"
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Eメールに基づくリード情報付与のためのIAPサービスが、このリードに対して実行さ"
"れたかどうか。"

View file

@ -1,19 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:33+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/kab/>\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: am\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -34,9 +39,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -45,6 +55,17 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -66,6 +87,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "Asulay"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -75,39 +107,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,25 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# JH CHOI <hwangtog@gmail.com>, 2022
# Sarah Park, 2023
#
# * crm_iap_enrich
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Kwanghee Park (kwpa)" <kwpa@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Sarah Park, 2023\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-17 19:01+0000\n"
"Last-Translator: \"Kwanghee Park (kwpa)\" <kwpa@odoo.com>\n"
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ko/>\n"
"Language: 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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,8 +27,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> 이메일 주소 또는 이메일 주소를 기반으로 하는 회사 데이터가 이메일 제공자 중 하나가 아닙니다. 크레딧이 소비되지 "
"않았습니다. </span>"
"<span> 이메일 주소 또는 이메일 주소를 기반으로 하는 회사 데이터가 이메일 제공"
"자 중 하나가 아닙니다. 크레딧이 소비되지 않았습니다. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -42,16 +42,32 @@ msgstr "<span>유효하지 않은 이메일 주소이기 때문에 보완할 수
msgid "Allow manual enrich"
msgstr "수동 강화 허용"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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 "설정 구성"
msgstr "환경 설정"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "영업기회 생성"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "표시명"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -74,6 +90,17 @@ msgstr "회사 데이터로 영업기회를 보완합니다."
msgid "Enrichment done"
msgstr "강화 완료"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -83,39 +110,26 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "%s 배치 보완 요청을 전송했습니다: %s 예외 항목으로 인해 실패했습니다."
#. 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 서비스가 수행되었는지 여부."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"이 영업제안에 대해 이메일 기반 영업제안 강화를 위한 IAP 서비스가 수행되었는"
"지 여부."

View file

@ -1,19 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
"odoo-19/crm_iap_enrich/ckb/>\n"
"Language: ku\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -34,9 +38,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -45,6 +54,17 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -66,6 +86,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -75,39 +106,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,147 +1,100 @@
# 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: 2019-09-09 12:17+0000\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"
"Language: lb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_with_data
msgid "(Time Now)"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
msgid "<span> No company data found based on the email address or email address is one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_with_data
msgid "<b>Phone :</b>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid "<span>Enrichment could not be done because the email address does not look valid.</span>"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_with_data
msgid "<b>Timezone : </b>"
#. 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_lead_enrich
#: model:mail.template,body_html:crm_iap_lead_enrich.mail_template_data_iap_lead_enrich_nocredit
msgid ""
"<div style=\"margin: 0px; padding: 0px;\">\n"
" <p>Dear ${object.create_uid.name or 'Madam/Sir'},</p><br/>\n"
" <p>Unfortunately, there are no more credits on your IAP Lead Enrichment account.<br/>\n"
" You can charge it back from the Settings of the CRM app or from your IAP portal.<br/></p><br/>\n"
" <p>Best regards,</p><br/>\n"
" <p>Odoo S.A.</p>\n"
"</div>\n"
" "
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_notfound
msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done as no email address was provided.</span>"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_with_data
msgid "<span>Lead enriched based on email address</span>"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.actions.server,name:crm_iap_lead_enrich.ir_cron_lead_enrichment_ir_actions_server
#: model:ir.cron,cron_name:crm_iap_lead_enrich.ir_cron_lead_enrichment
#: model:ir.cron,name:crm_iap_lead_enrich.ir_cron_lead_enrichment
#. 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_lead_enrich
#: model:ir.model.fields,field_description:crm_iap_lead_enrich.field_iap_enrich_api__display_name
msgid "Display Name"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_res_config_settings
msgid "Config Settings"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model.fields,field_description:crm_iap_lead_enrich.field_crm_lead__iap_enrich_done
#. 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_lead_enrich
#: model:ir.model,name:crm_iap_lead_enrich.model_iap_enrich_api
msgid "IAP Lead Enrichment API"
#. 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_lead_enrich
#: model:mail.template,subject:crm_iap_lead_enrich.mail_template_data_iap_lead_enrich_nocredit
msgid "IAP Lead Enrichment Notification"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model.fields,field_description:crm_iap_lead_enrich.field_iap_enrich_api__id
msgid "ID"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model.fields,field_description:crm_iap_lead_enrich.field_iap_enrich_api____last_update
msgid "Last Modified on"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_email
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_notfound
msgid "Lead Enrichment based on email address"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_credit
#. module: crm_iap_enrich
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Lead enriched based on email address"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model,name:crm_iap_lead_enrich.model_crm_lead
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead/Opportunity"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model.fields,field_description:crm_iap_lead_enrich.field_crm_lead__reveal_id
msgid "Reveal ID"
#. module: crm_iap_enrich
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Not enough credits for Lead Enrichment"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_with_data
msgid "Technology Used :"
#. module: crm_iap_enrich
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
#. module: crm_iap_lead_enrich
#: model:ir.model.fields,help:crm_iap_lead_enrich.field_crm_lead__iap_enrich_done
msgid ""
"Whether IAP service for lead enrichment based on email has been performed on"
" this lead."
#. module: crm_iap_enrich
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "The leads/opportunities have successfully been enriched"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_credit
msgid "Your balance for Lead Enrichment is insufficient. Please go to your"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_credit
msgid "iap account"
msgstr ""
#. module: crm_iap_lead_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_lead_enrich.mail_message_lead_enrich_no_credit
msgid "to buy credits."
#. 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 ""

View file

@ -1,118 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# sackda chanthasombath, 2023
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,25 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Jonas Zinkevicius <jozi@odoo.com>, 2022
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
# Andrius Laukavičius <andrius@focusate.eu>, 2022
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Andrius Laukavičius <andrius@focusate.eu>, 2022\n"
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 18:29+0000\n"
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=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"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -40,9 +44,14 @@ msgstr ""
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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: Praturtinti iniciatyvas (IAP)"
@ -51,6 +60,17 @@ msgstr "CRM: Praturtinti iniciatyvas (IAP)"
msgid "Config Settings"
msgstr "Konfigūracijos nustatymai"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Rodomas pavadinimas"
#. 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
@ -72,6 +92,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Iniciatyva"
#. 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
@ -81,39 +112,27 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Iniciatyva/Galimybė"

View file

@ -1,24 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Arnis Putniņš <arnis@allegro.lv>, 2022
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
#
# * crm_iap_enrich
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-12-21 18:11+0000\n"
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>\n"
"Language-Team: Latvian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/lv/>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= "
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
"X-Generator: Weblate 5.14.3\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -26,6 +28,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Nav atrasti uzņēmuma dati, pamatojoties uz e-pasta adresi, vai arī e-"
"pasta adrese pieder e-pasta pakalpojumu sniedzējam. Kredīts netika patērēts. "
"</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -39,9 +44,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -50,6 +60,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Konfigurācijas uzstādījumi"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Parādīt vārdu"
#. 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
@ -71,6 +92,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Pavediens"
#. 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
@ -80,39 +112,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,117 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Niyas Raphy, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Niyas Raphy, 2023\n"
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ml\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,23 +1,26 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
#
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+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"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/mn/>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -38,9 +41,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -49,6 +57,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Тохиргооны тохируулга"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Боломж үүсгэх"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -70,6 +89,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -79,39 +109,27 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Сэжим/Боломж"

View file

@ -1,23 +1,23 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Mehjabin Farsana, 2023
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Mehjabin Farsana, 2023\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/my/>\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -38,16 +38,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,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 "Tetapan Konfigurasi"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "ပြသသော အမည်"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -70,6 +86,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "နံပါတ်"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -79,39 +106,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,23 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2022\n"
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 18:29+0000\n"
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/nb_NO/>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -38,9 +40,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -49,6 +56,17 @@ msgstr ""
msgid "Config Settings"
msgstr "Innstillinger"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Opprett salgsmulighet"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Visningsnavn"
#. 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
@ -70,6 +88,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -79,39 +108,27 @@ 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/mulighet"
#. 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
#~ msgid "Lead/Opportunity"
#~ msgstr "Lead/mulighet"

View file

@ -1,24 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Bren Driesen <brdri@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2022\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-18 13:49+0000\n"
"Last-Translator: Bren Driesen <brdri@odoo.com>\n"
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/nl/>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -26,9 +29,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Geen bedrijfsgegevens gevonden op basis van het e-mailadres of het "
"e-mailadres is die van een e-mailprovider. Er is geen krediet verbruikt. "
"</span>"
"<span> Geen bedrijfsgegevens gevonden op basis van het e-mailadres of het e-"
"mailadres is die van een e-mailprovider. Er is geen krediet verbruikt. </"
"span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -36,24 +39,40 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Verrijking kon niet worden gedaan omdat het e-mailadres er niet geldig"
" uitziet.</span>"
"<span>Verrijking kon niet worden gedaan omdat het e-mailadres er niet geldig "
"uitziet.</span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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"
msgstr "Configuratie-instellingen"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Maak een verkoopkans aan"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Weergavenaam"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -76,6 +95,17 @@ msgstr "Verrijk kansen met bedrijfsgegevens"
msgid "Enrichment done"
msgstr "Verrijking gereed"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -85,41 +115,32 @@ 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"
msgstr "Leadverrijking gebaseerd op e-mailadres"
#. 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."
msgstr "Niet genoeg credits voor leadverrijking."
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr "Verzend batch %s verrijkingsverzoeken: mislukt met uitzondering %s"
#. 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."
"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."
"Of IAP-service voor leadverrijking op basis van e-mail is uitgevoerd op deze "
"lead."
#~ msgid "Lead/Opportunity"
#~ msgstr "Lead/Verkoopkans"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr "Verzend batch %s verrijkingsverzoeken: mislukt met uitzondering %s"

View file

@ -1,113 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: no\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,26 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Maksym <ms@myodoo.pl>, 2022
# Piotr Strębski <strebski@gmail.com>, 2022
# Maksym <ms@myodoo.pl>, 2023
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
# Marta Wacławek, 2024
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Marta (wacm)" <wacm@odoo.com>, 2026.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marta Wacławek, 2024\n"
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2026-02-25 14:42+0000\n"
"Last-Translator: \"Marta (wacm)\" <wacm@odoo.com>\n"
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/pl/>\n"
"Language: 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"
"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"
"X-Generator: Weblate 5.14.3\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -28,9 +32,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>Nie znaleziono danych firmy na podstawie adresu e-mail lub adres "
"e-mail jest jednym z dostawców poczty elektronicznej. Nie zużyto "
"kredytu.</span>"
"<span>Nie znaleziono danych firmy na podstawie adresu e-mail lub adres e-"
"mail jest jednym z dostawców poczty elektronicznej. Nie zużyto kredytu.</"
"span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -46,16 +50,32 @@ msgstr ""
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
msgid "An error occurred during lead enrichment"
msgstr "Podczas wzbogacania leadów wystąpił błąd"
#. 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
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"
msgstr "Konfiguracja ustawień"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Utwórz szansę"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nazwa wyświetlana"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -79,50 +99,53 @@ 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 leadó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 "Lead wzbogacony w oparciu o adres e-mail"
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead/Opportunity"
msgstr "Lead/Okazja"
msgid "Lead"
msgstr "Leadów"
#. 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
msgid "Lead enriched based on email address"
msgstr "Szansa wzbogacona w oparciu o adres e-mail"
#. 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 do wzbogacenia leadów"
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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Wysłana partia %s żądań wzbogacenia: nie powiodła się i zwróciła wyjątek %s"
#. 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/okazje zostały z powodzeniem wzbogacone"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Czy na tym sygnale została wykonana usługa IAP wzbogacenia leadu na "
"Czy na tym leadzie została wykonana usługa IAP wzbogacenia leada na "
"podstawie wiadomości e-mail."
#~ msgid "Lead/Opportunity"
#~ msgstr "Sygnał/Szansa"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Wysłana partia %s żądań wzbogacenia: nie powiodła się i zwróciła wyjątek "
#~ "%s"

View file

@ -1,25 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
# Martin Trigaux, 2022
# Daniel Reis, 2025
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Daniel Reis, 2025\n"
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,6 +30,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> 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. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -34,86 +40,105 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>O enriquecimento não pôde ser feito porque o endereço de e-mail não "
"parece válido.</span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
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.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Criar uma oportunidade"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nome"
#. 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 "Eniquecer"
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 ""
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 ""
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 ""
msgstr "Enriquecimento realizado"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Prospeto"
#. 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 ""
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 ""
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead/Opportunity"
msgstr "Prospecto / Oportunidade"
msgstr "Lead enriquecido 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 "Not enough credits for Lead Enrichment"
msgstr ""
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""
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."
"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."
#~ msgid "Lead/Opportunity"
#~ msgstr "Prospecto / Oportunidade"

View file

@ -1,25 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Kevilyn Rosa, 2023
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
#
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 10:03+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
"odoo-19/crm_iap_enrich/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -29,7 +32,7 @@ msgid ""
msgstr ""
"<span> 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.</span>"
"consumido. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -45,9 +48,14 @@ msgstr ""
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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: enriquecer leads (IAP)"
@ -56,6 +64,17 @@ msgstr "CRM: enriquecer leads (IAP)"
msgid "Config Settings"
msgstr "Configurações"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Criar uma oportunidade"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nome exibido"
#. 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
@ -77,6 +96,17 @@ msgstr "Enriquecer a oportunidade com dados da empresa"
msgid "Enrichment done"
msgstr "Enriquecimento realizado"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -86,42 +116,33 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Enviou solicitações %s de enriquecimento em lote: falhou com exceção de %s"
#. 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."
"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."
#~ msgid "Lead/Opportunity"
#~ msgstr "Lead/Oportunidade"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Enviou solicitações %s de enriquecimento do lote: falhou com a exceção %s"

View file

@ -1,26 +1,30 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Foldi Robert <foldirobert@nexterp.ro>, 2022
# Martin Trigaux, 2022
# Dorin Hongu <dhongu@gmail.com>, 2022
# Claudia Baisan, 2023
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+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"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:07+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -46,9 +50,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Permite îmbogățirea manuală"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "An error occurred during lead enrichment"
msgstr "A apărut o eroare în timpul îmbogățirii pistei"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: îmbogățirea oportunităților (IAP)"
@ -57,6 +66,17 @@ msgstr "CRM: îmbogățirea oportunităților (IAP)"
msgid "Config Settings"
msgstr "Setări de configurare"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Creează o oportunitate"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Nume afișat"
#. 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
@ -78,6 +98,17 @@ msgstr "Îmbogățirea oportunității cu datele companiei"
msgid "Enrichment done"
msgstr "Îmbogățirea efectuată"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Pistă"
#. 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
@ -87,41 +118,31 @@ msgstr "Îmbogățirea oportunității (bazată pe adresa 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 "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
#. odoo-python
#: 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
#. odoo-python
#: 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
#. odoo-python
#: 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."
"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 "
"Indică dacă serviciul IAP pentru îmbogățirea oportunității bazată pe e-mail a"
#~ msgid "Lead/Opportunity"
#~ msgstr "Pista/Oportunitate"
#~ 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"

View file

@ -1,25 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Сергей Шебанин <sergey@shebanin.ru>, 2022
# ILMIR <karamov@it-projects.info>, 2022
# Wil Odoo, 2024
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-10-29 05:46+0000\n"
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,9 +29,9 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>Данные о компании не найдены на основе адреса электронной почты либо "
"адрес электронной почты принадлежит поставщику услуг электронной почты. "
"Кредит не использован. </span>"
"<span> Данные о компании не найдены по адресу электронной почты или адрес "
"электронной почты принадлежит одному из провайдеров электронной почты. "
"Кредит не был использован. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -37,35 +39,51 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Пополнение не может быть выполнено, так как адрес электронной почты "
"выглядит недействительным.</span>"
"<span>Обогащение не удалось провести, потому что адрес электронной почты не "
"выглядит действительным.</span>"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button
msgid "Allow manual enrich"
msgstr "Позволять пополнение вручную"
msgstr "Разрешить обогащение вручную"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: пополнить лиды (IAP)"
msgstr "CRM: обогащение лидов (IAP)"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_res_config_settings
msgid "Config Settings"
msgstr "Конфигурационные настройки"
msgstr "Параметры конфигурации"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Создать возможность"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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 "Пополнить"
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 "Обогатите свинец данными о компании"
msgstr "Обогатите Лид данными о компании"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form
@ -75,52 +93,51 @@ msgstr "Дополните возможности данными о компан
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done
msgid "Enrichment done"
msgstr "Пополнение завершено"
msgstr "Обогащение сделано"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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 "Лидогенерация (на основе адреса электронной почты) "
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 "Лид / Сделка"
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 "Недостаточно кредитов для \"Обогащения свинца"
msgstr "Недостаточно баллов для \"Обогащения Лида\""
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "The leads/opportunities have successfully been enriched"
msgstr "Зацепки/возможности были успешно обогащены"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Была ли выполнена для данного лида услуга IAP пополнения потенциальных "
"клиентов на основе электронной почты."
"Была ли выполнена услуга IAP по обогащению Лида на основе электронной почты "
"для этого свинца."
#~ msgid "Lead/Opportunity"
#~ msgstr "Потенциальные сделки"

View file

@ -1,26 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Damian Brencic <brencicdamian12313@gmail.com>, 2022
# Martin Trigaux, 2022
# rastislav Brencic <rastislav.brencic99@gmail.com>, 2022
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
#
# * crm_iap_enrich
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2022\n"
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:33+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Slovak <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/sk/>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -28,9 +26,6 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Ž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ý.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -42,24 +37,40 @@ 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"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: obohatiť potenciálnu príležitosť (IAP)"
msgstr ""
#. 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.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Zobrazovaný názov"
#. 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"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form
@ -74,7 +85,18 @@ 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é"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Potenciálna príležitosť"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -85,41 +107,24 @@ 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"
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 "Sent batch %s enrich requests: failed with exception %s"
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."
"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."

View file

@ -1,25 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Grega Vavtar <grega@hbs.si>, 2022
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Aleš Pipan, 2025
#
# * crm_iap_enrich
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Aleš Pipan, 2025\n"
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/sl/>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
"n%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,8 +27,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Na podlagi e-poštnega naslova ni bilo mogoče najti nobenih podatkov o"
" podjetju ali pa e-poštni naslov pripada ponudniku e-pošte. Kredit ni bil "
"<span> Na podlagi e-poštnega naslova ni bilo mogoče najti nobenih podatkov o "
"podjetju ali pa e-poštni naslov pripada ponudniku e-pošte. Kredit ni bil "
"porabljen. </span>"
#. module: crm_iap_enrich
@ -45,9 +45,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr "Dovoli ročno obogatitev"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "An error occurred during lead enrichment"
msgstr "Med obogatitvijo svinca je prišlo do napake"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: obogatitev potencialnih strank (IAP)"
@ -56,6 +61,17 @@ msgstr "CRM: obogatitev potencialnih strank (IAP)"
msgid "Config Settings"
msgstr "Uredi nastavitve"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Create an Opportunity"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Prikazani naziv"
#. 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
@ -77,6 +93,17 @@ msgstr "Obogatite priložnost s podatki o podjetju"
msgid "Enrichment done"
msgstr "Obogatitev opravljena"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Indic"
#. 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
@ -86,41 +113,26 @@ msgstr "Obogatitev potencialnih strank (na podlagi e-poštnega naslova)"
#. 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 "Obogatitev potencialnih strank na podlagi e-poštnega naslova"
#. 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 "Ni dovolj kreditov za obogatitev svinca"
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "The leads/opportunities have successfully been enriched"
msgstr "Potencialne stranke/priložnosti so bile uspešno obogatene"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Ali je bila za to potencialno stranko izvedena storitev IAP za obogatitev "
"potencialnih strank na podlagi e-pošte."

View file

@ -1,19 +1,20 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: \n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -34,9 +35,14 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr ""
@ -45,6 +51,17 @@ msgstr ""
msgid "Config Settings"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -66,6 +83,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -75,39 +103,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,125 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
# Milan Bojovic <mbojovic@outlook.com>, 2023
# コフスタジオ, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>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.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Enrichment nije mogao biti obavljen jer adresa e-pošte nije "
"važeća.</span>"
#. 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
#: 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
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 "Sent batch %s enrich requests: failed with exception %s"
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 "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."

View file

@ -1,23 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Ivan Shakh, 2024
#
# * crm_iap_enrich
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ivan Shakh, 2024\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
"odoo-19/crm_iap_enrich/sr_Latn/>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -38,16 +39,32 @@ msgstr ""
msgid "Allow manual enrich"
msgstr ""
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,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 "Налады канфігурацыі"
msgstr "Podešavanje konfiguracije"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Kreiraj prodajnu priliku"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Naziv za prikaz"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -70,6 +87,17 @@ msgstr ""
msgid "Enrichment done"
msgstr ""
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lid"
#. 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
@ -79,39 +107,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""

View file

@ -1,25 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2022
# Lasse L, 2023
#
# * crm_iap_enrich
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Lasse L, 2023\n"
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-07 13:51+0000\n"
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>\n"
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/sv/>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -36,25 +35,41 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Berikning kunde inte göras eftersom e-postadressen inte ser giltig "
"ut.</span>"
"<span>Berikning kunde inte göras eftersom e-postadressen inte ser giltig ut."
"</span>"
#. 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
msgid "An error occurred during lead enrichment"
msgstr "Ett fel inträffade under affärsmöjlighetens berikning"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: berika leads (IAP)"
msgstr "CRM: berika affärsmöjlighet (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.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Skapa en möjlighet"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Visningsnamn"
#. 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
@ -64,7 +79,7 @@ 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"
msgstr "Berika affärsmöjlighet med företagsdata"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form
@ -77,50 +92,45 @@ 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"
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead/Opportunity"
msgstr "Affärsmöjlighet/Möjlighet"
msgid "Lead"
msgstr "Kundämne"
#. 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 "Affärsmöjlighetsberikning (baserat på e-postadress)"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
msgid "Lead enriched based on email address"
msgstr "Affärsmöjlighet berikad baserat på e-postadress"
#. 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"
msgstr "Inte tillräckligt med poäng för affärsmöjlighetsberikning"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Skickad batch %s berikningsförfrågningar: misslyckades med undantag %s"
#. 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."
"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."
"Oavsett om IAP-tjänst för affärsmöjlighetsberikning baserat på e-post har "
"utförts på denna affärsmöjlighet."

View file

@ -1,113 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sw\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,113 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ta\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 ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
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
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 "Sent batch %s enrich requests: failed with exception %s"
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 ""

View file

@ -1,24 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
# Rasareeyar Lappiam, 2023
#
# * crm_iap_enrich
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Rasareeyar Lappiam, 2023\n"
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:15+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/th/>\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -26,9 +26,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> ไม่พบข้อมูลบริษัทตามที่อยู่อีเมล "
"หรือที่อยู่อีเมลที่เป็นหนึ่งในผู้ให้บริการอีเมล ซึ่งไม่มีการใช้เครดิต "
"</span>"
"<span> ไม่พบข้อมูลบริษัทตามที่อยู่อีเมล หรือที่อยู่อีเมลที่เป็นหนึ่งในผู้ให้บริการอีเมล "
"ซึ่งไม่มีการใช้เครดิต </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -42,9 +41,14 @@ msgstr "<span>ไม่สามารถเพิ่มได้เนื่อ
msgid "Allow manual enrich"
msgstr "อนุญาตให้เพิ่มด้วยตนเอง"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: เพิ่มลูกค้าเป้าหมาย (IAP)"
@ -53,6 +57,17 @@ msgstr "CRM: เพิ่มลูกค้าเป้าหมาย (IAP)"
msgid "Config Settings"
msgstr "ตั้งค่าการกำหนดค่า"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "สร้างโอกาส"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -74,6 +89,17 @@ msgstr "เพิ่มโอกาสด้วยข้อมูลบริษ
msgid "Enrichment done"
msgstr "เพิ่มเรียบร้อย"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ไอดี"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -83,41 +109,25 @@ 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 "เครดิตไม่เพียงพอสำหรับการเพิ่มคุณค่าของลูกค้าเป้าหมาย"
msgstr "เครดิตไม่เพียงพอสำหรับการเพิ่มลูกค้าเป้าหมาย"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
msgid "Sent batch %s enrich requests: failed with exception %s"
msgstr "ส่งคำขอเพิ่มกลุ่ม %s: ล้มเหลวโดยมีข้อยกเว้น %s"
#. 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 "ลูกค้าเป้าหมาย/โอกาส ได้รับการปรับปรุงให้สมบูรณ์แล้ว"
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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"บริการ IAP "
"สำหรับเพิ่มลูกค้าเป้าหมายตามอีเมลได้รับการดำเนินการกับลูกค้าเป้าหมายนี้แล้วหรือไม่"
"บริการ IAP สำหรับเพิ่มลูกค้าเป้าหมายตามอีเมลได้รับการดำเนินการกับลูกค้าเป้าหมายนี้แล้วหรือไม่"

View file

@ -1,25 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# abc Def <hdogan1974@gmail.com>, 2022
# Murat Kaplan <muratk@projetgrup.com>, 2022
# Halil, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Halil, 2023\n"
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-08 01:50+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/tr/>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,9 +30,8 @@ msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> 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ı. </span>"
"<span> E-posta adresi aramasına göre şirket verisi bulunamadı veya e-posta "
"adresi bir e-posta sağlayıcısına ait. Kredi tüketilmedi. </span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -37,17 +39,22 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>E-posta adresi geçerli görünmediğinden zenginleştirme "
"yapılamadı.</span>"
"<span>E-posta adresi geçerli görünmediğinden zenginleştirme yapılamadı.</"
"span>"
#. 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
msgid "An error occurred during lead enrichment"
msgstr "Aday zenginleştirme sırasında bir hata oluştu"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: adayları zenginleştirin (IAP)"
@ -56,6 +63,17 @@ msgstr "CRM: adayları zenginleştirin (IAP)"
msgid "Config Settings"
msgstr "Yapılandırma Ayarları"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Fırsat Oluştur"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "İsim Göster"
#. 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
@ -77,6 +95,17 @@ msgstr "Şirket verileriyle fırsatı zenginleştirin"
msgid "Enrichment done"
msgstr "Zenginleştirme yapıldı"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Aday"
#. 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
@ -86,42 +115,33 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr ""
"Grup %s zenginleştirme isteği gönderildi: %s istisnasıyla başarısız oldu"
#. 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."
"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."
#~ msgid "Lead/Opportunity"
#~ msgstr "Aday/Fırsat"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Grup %s zenginleştirme isteği gönderildi: %s istisnasıyla başarısız oldu"

View file

@ -1,24 +1,29 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-11-16 15:08+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/uk/>\n"
"Language: 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"
"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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -27,8 +32,8 @@ msgid ""
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span> Не знайдено даних компанії на основі адреси електронної пошти або "
"електронна пошта є поштою провайдера. Жодного кредиту не було використано. "
"</span>"
"електронна пошта є поштою провайдера. Жодного кредиту не було використано. </"
"span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -36,17 +41,22 @@ msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>Не вдалося зробити збільшення лідів, оскільки адреса електронної пошти"
" виглядає недійсною.</span>"
"<span>Не вдалося зробити збільшення лідів, оскільки адреса електронної пошти "
"виглядає недійсною.</span>"
#. 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
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: збільшіть ліди (IAP)"
@ -55,6 +65,17 @@ msgstr "CRM: збільшіть ліди (IAP)"
msgid "Config Settings"
msgstr "Налаштування"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Створіть нагоду"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -76,6 +97,17 @@ msgstr "Отримати нагоди через дані компанії"
msgid "Enrichment done"
msgstr "Збільшення виконано"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -85,41 +117,32 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "Надіслано запити на %s групові отримання: не вдалося за винятком %s"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Чи послугу IAP для збільшення лідів на основі електронної пошти було "
"застосовано на цьому ліді."
#~ msgid "Lead/Opportunity"
#~ msgstr "Лід/Нагода"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr "Надіслано запити на %s групові отримання: не вдалося за винятком %s"

View file

@ -1,118 +1,160 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# Translators:
# Lux Sok <sok.lux@gmail.com>, 2023
# Sengtha Chay <sengtha@gmail.com>, 2023
#
#
#
# Translated by:
# Deepvision - info@deepvision.uz | +998 77-093-0007
# Amon Olimov - amon.bars@gmail.com
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
#
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server 19.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2023\n"
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: km\n"
"Content-Transfer-Encoding: 8bit\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
#, fuzzy
msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr ""
"<span>E-pochta manzili asosida hech qanday kompaniya ma'lumotlari topilmadi "
"yoki e-pochta manzili elektron pochta provayderlaridan biriga tegishli. Hech "
"qanday kredit sarflanmadi.</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
#, fuzzy
msgid ""
"<span>Enrichment could not be done because the email address does not look "
"valid.</span>"
msgstr ""
"<span>E-pochta manzili yaroqsiz koringanligi sababli ma'lumotlarni boyitish "
"amalga oshirilmadi.</span>"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__show_enrich_button
#, fuzzy
msgid "Allow manual enrich"
msgstr ""
msgstr "Qolda boyitishga ruxsat berish"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, fuzzy
msgid "An error occurred during lead enrichment"
msgstr "Potensial mijoz ma'lumotlarini boyitirishda xatolik yuz berdi"
#. 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
#, fuzzy
msgid "CRM: enrich leads (IAP)"
msgstr ""
msgstr "CRM: potensial mijozlarni boyitish (IAP)"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_res_config_settings
#, fuzzy
msgid "Config Settings"
msgstr "កំណត់រចនាសម្ព័ន្ធ"
msgstr "Sozlamalar"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
#, fuzzy
msgid "Create an Opportunity"
msgstr "Imkoniyat yaratish"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
#, fuzzy
msgid "Display Name"
msgstr "Korsatiladigan nom"
#. 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
#, fuzzy
msgid "Enrich"
msgstr ""
msgstr "Boyitish"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form
#, fuzzy
msgid "Enrich lead with company data"
msgstr ""
msgstr "Potensial mijozni kompaniya ma'lumotlari bilan boyitish"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.crm_lead_view_form
#, fuzzy
msgid "Enrich opportunity with company data"
msgstr ""
msgstr "Imkoniyatni kompaniya ma'lumotlari bilan boyitish"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__iap_enrich_done
#, fuzzy
msgid "Enrichment done"
msgstr ""
msgstr "Boyitish amalga oshirildi"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
#, fuzzy
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
#, fuzzy
msgid "Lead"
msgstr "Potensial mijoz"
#. 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
#, fuzzy
msgid "Lead Enrichment (based on email address)"
msgstr ""
msgstr "Potensial mijozni boyitish (e-pochta manzili asosida)"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
#, fuzzy
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 "Leads/ឱកាស"
msgstr "E-pochta manzili asosida boyitilgan potensial mijoz"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
#, fuzzy
msgid "Not enough credits for Lead Enrichment"
msgstr ""
msgstr "Potensial mijozni boyitish uchun kreditlar yetarli emas"
#. module: crm_iap_enrich
#. odoo-python
#: 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
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
#, python-format
#, fuzzy
msgid "The leads/opportunities have successfully been enriched"
msgstr ""
msgstr "Potensial mijozlar/imkoniyatlar muvaffaqiyatli boyitildi"
#. module: crm_iap_enrich
#: model:ir.model.fields,help:crm_iap_enrich.field_crm_lead__iap_enrich_done
#, fuzzy
msgid ""
"Whether IAP service for lead enrichment based on email has been performed on"
" this lead."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr ""
"Ushbu potensial mijozda e-pochtaga asoslangan boyitish boyicha IAP xizmati "
"bajarilganmi."

View file

@ -1,24 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2025
#
# Thi Huong Nguyen, 2023
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Thi Huong Nguyen, 2025\n"
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 02:30+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
"crm_iap_enrich/vi/>\n"
"Language: 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"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
@ -42,9 +45,14 @@ msgstr ""
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
msgid "An error occurred during lead enrichment"
msgstr "Đã xảy ra lỗi trong quá trình tăng cường lead"
#. 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
msgid "CRM: enrich leads (IAP)"
msgstr "CRM: tăng cường lead (IAP)"
@ -53,6 +61,17 @@ msgstr "CRM: tăng cường lead (IAP)"
msgid "Config Settings"
msgstr "Cài đặt cấu hình"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "Tạo cơ hội"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "Tên hiển thị"
#. 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
@ -74,6 +93,17 @@ msgstr "Tăng cường cơ hội với dữ liệu công ty"
msgid "Enrichment done"
msgstr "Hoàn tất tăng cường"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
msgstr "Lead"
#. 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
@ -83,41 +113,33 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "Gửi yêu cầu tăng cường theo lô %s: không thành công với ngoại lệ %s"
#. 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."
"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. "
"lead này chưa."
#~ msgid "Lead/Opportunity"
#~ msgstr "Lead/Cơ hội"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr ""
#~ "Gửi yêu cầu tăng cường hàng loạt %s: không thành công với ngoại lệ %s"

View file

@ -1,32 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# 稀饭~~ <wangwhai@qq.com>, 2022
# Jeffery CHEN <jeffery9@gmail.com>, 2022
#
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~15.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2022\n"
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 15:21+0000\n"
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
"projects/odoo-19/crm_iap_enrich/zh_Hans/>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr "<span>基于电子邮件地址或电子邮件地址找不到公司数据是电子邮件提供商之一。没有信用消耗。</span>"
msgstr ""
"<span>基于电子邮件地址或电子邮件地址找不到公司数据是电子邮件提供商之一。没有"
"信用消耗。</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -40,9 +44,14 @@ msgstr "<span>因为电子邮件地址看起来无效,所以无法进行填充
msgid "Allow manual enrich"
msgstr "允许手动丰富"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
msgid "CRM: enrich leads (IAP)"
msgstr "CRM丰富线索 (IAP)"
@ -51,6 +60,17 @@ msgstr "CRM丰富线索 (IAP)"
msgid "Config Settings"
msgstr "配置设置"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "创建商机"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
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
@ -72,6 +92,17 @@ msgstr "用公司数据丰富机会"
msgid "Enrichment done"
msgstr "丰富结束"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "ID"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -81,39 +112,30 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "已发送批处理 %s 丰富请求:失败,出现异常%s"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr "是否已根据此电子邮件执行基于电子邮件的IAP服务以进行线索丰富。"
#~ msgid "Lead/Opportunity"
#~ msgstr "线索/商机"
#~ msgid "Sent batch %s enrich requests: failed with exception %s"
#~ msgstr "已发送批处理 %s 丰富请求:失败,出现异常%s"

View file

@ -1,31 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_iap_enrich
#
# * crm_iap_enrich
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2023
#
# Wil Odoo, 2025
#
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Project-Id-Version: Odoo Server saas~18.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tony Ng, 2023\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
"PO-Revision-Date: 2025-09-16 08:10+0000\n"
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
"projects/odoo-19/crm_iap_enrich/zh_Hant/>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_notfound
msgid ""
"<span> No company data found based on the email address or email address is "
"one of an email provider. No credit was consumed. </span>"
msgstr "<span>找不到基於電子郵件地址或電子郵件地址的公司資料是電子郵件供應商。未消耗任何點數。</span>"
msgstr ""
"<span>找不到基於電子郵件地址或電子郵件地址的公司資料是電子郵件供應商。未消耗"
"任何點數。</span>"
#. module: crm_iap_enrich
#: model_terms:ir.ui.view,arch_db:crm_iap_enrich.mail_message_lead_enrich_no_email
@ -39,16 +43,32 @@ msgstr "<span>由於電子郵件地址看起來無效,因此無法進行擴充
msgid "Allow manual enrich"
msgstr "允許手動豐富"
#. module: crm_iap_enrich
#. odoo-python
#: code:addons/crm_iap_enrich/models/crm_lead.py:0
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
#: model:ir.cron,cron_name:crm_iap_enrich.ir_cron_lead_enrichment
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 "設定"
msgstr "配置設定"
#. module: crm_iap_enrich
#: model:ir.model,website_form_label:crm_iap_enrich.model_crm_lead
msgid "Create an Opportunity"
msgstr "建立銷售機會"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__display_name
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__display_name
msgid "Display Name"
msgstr "顯示名稱"
#. module: crm_iap_enrich
#: model:ir.actions.server,name:crm_iap_enrich.action_enrich_mail
@ -71,6 +91,17 @@ msgstr "利用公司資料擴充商機資訊"
msgid "Enrichment done"
msgstr "點數用盡"
#. module: crm_iap_enrich
#: model:ir.model.fields,field_description:crm_iap_enrich.field_crm_lead__id
#: model:ir.model.fields,field_description:crm_iap_enrich.field_res_config_settings__id
msgid "ID"
msgstr "識別號"
#. module: crm_iap_enrich
#: model:ir.model,name:crm_iap_enrich.model_crm_lead
msgid "Lead"
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
@ -80,39 +111,24 @@ 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 "Sent batch %s enrich requests: failed with exception %s"
msgstr "已發送批次 %s 的豐富請求:失敗,伴隨的異常為 %s"
#. 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."
"Whether IAP service for lead enrichment based on email has been performed on "
"this lead."
msgstr "是否針對此潛在商機執行了基於電子郵件的潛在商機資訊擴充 IAP 服務。"

View file

@ -1,18 +1,16 @@
# -*- 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 import _, api, fields, models, modules, tools
from odoo.addons.iap.tools import iap_tools
from odoo.tools import OrderedSet
_logger = logging.getLogger(__name__)
class Lead(models.Model):
class CrmLead(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.')
@ -27,20 +25,22 @@ class Lead(models.Model):
lead.show_enrich_button = True
@api.model
def _iap_enrich_leads_cron(self):
timeDelta = fields.datetime.now() - datetime.timedelta(hours=1)
def _iap_enrich_leads_cron(self, enrich_hours_delay=24, batch_size=50):
timeDelta = self.env.cr.now() - datetime.timedelta(hours=enrich_hours_delay)
# 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)
('email_from', '!=', False),
('reveal_id', '=', False),
('create_date', '>', timeDelta),
('active', '=', True),
])
leads.iap_enrich(from_cron=True)
leads.iap_enrich(batch_size=batch_size)
@api.model_create_multi
def create(self, vals_list):
leads = super(Lead, self).create(vals_list)
leads = super().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)
@ -48,73 +48,111 @@ class Lead(models.Model):
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:
def iap_enrich(self, *, batch_size=50):
from_cron = bool(self.env.context.get('cron_id'))
send_notification = not from_cron
def process_leads(leads):
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_view(
'crm_iap_enrich.mail_message_lead_enrich_no_email',
subtype_id=self.env.ref('mail.mt_note').id)
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_PROVIDERS:
lead.write({'iap_enrich_done': True})
lead.message_post_with_view(
'crm_iap_enrich.mail_message_lead_enrich_notfound',
subtype_id=self.env.ref('mail.mt_note').id)
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('Sent batch %s enrich requests: failed because of credit', len(lead_emails))
if not from_cron:
self.env['iap.account']._send_iap_bus_notification(
service_name='reveal',
title=_("Not enough credits for Lead Enrichment"),
error_type='credit')
# 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_iap_bus_notification(
service_name='reveal',
error_type="exception",
title=_('Sent batch %s enrich requests: failed with exception %s', len(lead_emails), e))
_logger.info('Sent batch %s enrich requests: failed with exception %s', len(lead_emails), e)
else:
if not from_cron:
self.env['iap.account']._send_iap_bus_notification(
service_name='reveal',
title=_("The leads/opportunities have successfully been enriched"))
_logger.info('Sent batch %s enrich requests: success', 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))
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
# Commit processed batch to avoid complete rollbacks and therefore losing credits.
if not self.env.registry.in_test_mode():
self.env.cr.commit()
# 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.write({'iap_enrich_done': True})
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_PROVIDERS:
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 not lead_emails:
return
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 send_notification:
self.env['iap.account']._send_no_credit_notification(
service_name='reveal',
title=_("Not enough credits for Lead Enrichment"))
raise
except Exception as e:
if send_notification:
self.env['iap.account']._send_error_notification(
message=_('An error occurred during lead enrichment'))
_logger.info('An error occurred during lead enrichment: %s', e)
return
else:
if send_notification:
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)
if from_cron:
self.env['ir.cron']._commit_progress(remaining=len(self))
all_lead_ids = OrderedSet(self.ids)
while all_lead_ids:
leads = self.browse(all_lead_ids).try_lock_for_update(limit=batch_size)
if not leads:
_logger.error('A batch of leads could not be enriched (locked): %s', repr(self.browse(all_lead_ids)))
# all are locked, schedule the cron later when the records might be unlocked
self.env.ref('crm_iap_enrich.ir_cron_lead_enrichment')._trigger(self.env.cr.now() + datetime.timedelta(minutes=5))
if from_cron:
# mark the cron as fully done to prevent immediate reschedule
self.env['ir.cron']._commit_progress(remaining=0)
break
all_lead_ids -= set(leads._ids)
if from_cron:
# Using commit progress for processed leads
try:
process_leads(leads)
time_left = self.env['ir.cron']._commit_progress(len(leads))
except iap_tools.InsufficientCreditError:
# Since there are no credits left, there is no point to process the other batches
# set remaining=0 to avoid being called again
self.env['ir.cron']._commit_progress(remaining=0)
break
except Exception:
self.env.cr.rollback()
_logger.error('A batch of leads could not be enriched: %s', repr(leads))
time_left = self.env['ir.cron']._commit_progress(len(leads))
if not time_left:
break
else:
# Commit processed batch to avoid complete rollbacks and therefore losing credits.
try:
if modules.module.current_test:
with self.env.cr.savepoint():
process_leads(leads)
else:
process_leads(leads)
self.env.cr.commit()
except iap_tools.InsufficientCreditError:
# Since there are no credits left, there is no point to process the other batches
break
except Exception:
if not modules.module.current_test:
self.env.cr.rollback()
_logger.error('A batch of leads could not be enriched: %s', repr(leads))
@api.model
def _iap_enrich_from_response(self, iap_response):
@ -126,7 +164,10 @@ class Lead(models.Model):
iap_data = iap_response.get(str(lead.id))
if not iap_data:
lead.write({'iap_enrich_done': True})
lead.message_post_with_view('crm_iap_enrich.mail_message_lead_enrich_notfound', subtype_id=self.env.ref('mail.mt_note').id)
lead.message_post_with_source(
'crm_iap_enrich.mail_message_lead_enrich_notfound',
subtype_xmlid='mail.mt_note',
)
continue
values = {'iap_enrich_done': True}
@ -138,8 +179,6 @@ class Lead(models.Model):
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
@ -156,14 +195,14 @@ class Lead(models.Model):
template_values = iap_data
template_values['flavor_text'] = _("Lead enriched based on email address")
lead.message_post_with_view(
lead.message_post_with_source(
'iap_mail.enrich_company',
values=template_values,
subtype_id=self.env.ref('mail.mt_note').id
render_values=template_values,
subtype_xmlid='mail.mt_note',
)
def _merge_get_fields_specific(self):
return {
** super(Lead, self)._merge_get_fields_specific(),
** super()._merge_get_fields_specific(),
'iap_enrich_done': lambda fname, leads: any(lead.iap_enrich_done for lead in leads),
}

View file

@ -11,7 +11,7 @@ class TestLeadEnrich(TestCrmCommon, MockIAPEnrich):
@classmethod
def setUpClass(cls):
super(TestLeadEnrich, cls).setUpClass()
cls.registry.enter_test_mode(cls.cr)
cls.registry_enter_test_mode_cls()
cls.leads = cls.env['crm.lead']
for x in range(0, 4):
@ -20,11 +20,6 @@ class TestLeadEnrich(TestCrmCommon, MockIAPEnrich):
'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)
@ -42,12 +37,6 @@ class TestLeadEnrich(TestCrmCommon, MockIAPEnrich):
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)

View file

@ -9,10 +9,10 @@
<field name="show_enrich_button" invisible="1"/>
<button string="Enrich" name="iap_enrich" type="object" class="btn btn-secondary" data-hotkey="g"
title="Enrich lead with company data"
attrs="{'invisible':['|',('show_enrich_button', '!=', True),('type','=','opportunity')]}"/>
invisible="not show_enrich_button or type == 'opportunity'"/>
<button string="Enrich" name="iap_enrich" type="object" class="btn btn-secondary" data-hotkey="g"
title="Enrich opportunity with company data"
attrs="{'invisible':['|',('show_enrich_button', '!=', True),('type','=','lead')]}"/>
invisible="not show_enrich_button or type == 'lead'"/>
</xpath>
</field>
</record>

View file

@ -1,13 +1,15 @@
[project]
name = "odoo-bringout-oca-ocb-crm_iap_enrich"
version = "16.0.0"
description = "Lead Enrichment - Enrich Leads/Opportunities using email address domain"
description = "Lead Enrichment -
Enrich Leads/Opportunities using email address domain
"
authors = [
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
]
dependencies = [
"odoo-bringout-oca-ocb-iap_crm>=16.0.0",
"odoo-bringout-oca-ocb-iap_mail>=16.0.0",
"odoo-bringout-oca-ocb-iap_crm>=19.0.0",
"odoo-bringout-oca-ocb-iap_mail>=19.0.0",
"requests>=2.25.1"
]
readme = "README.md"
@ -17,7 +19,7 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
]