From 285257e3e9b7b627194c20755eea2f3b0999d4f0 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:09:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 3 + __manifest__.py | 30 ++++ data/mail_templates.xml | 118 +++++++++++++++ i18n/ar.po | 137 +++++++++++++++++ i18n/bg.po | 118 +++++++++++++++ i18n/ca.po | 140 ++++++++++++++++++ i18n/cs.po | 121 +++++++++++++++ i18n/da.po | 117 +++++++++++++++ i18n/de.po | 137 +++++++++++++++++ i18n/es.po | 138 +++++++++++++++++ i18n/es_419.po | 137 +++++++++++++++++ i18n/et.po | 138 +++++++++++++++++ i18n/fa.po | 118 +++++++++++++++ i18n/fi.po | 139 +++++++++++++++++ i18n/fr.po | 137 +++++++++++++++++ i18n/he.po | 118 +++++++++++++++ i18n/hu.po | 118 +++++++++++++++ i18n/iap_mail.pot | 113 ++++++++++++++ i18n/id.po | 137 +++++++++++++++++ i18n/it.po | 137 +++++++++++++++++ i18n/ja.po | 137 +++++++++++++++++ i18n/ko.po | 137 +++++++++++++++++ i18n/lt.po | 118 +++++++++++++++ i18n/lv.po | 120 +++++++++++++++ i18n/nl.po | 137 +++++++++++++++++ i18n/pl.po | 137 +++++++++++++++++ i18n/pt.po | 117 +++++++++++++++ i18n/pt_BR.po | 137 +++++++++++++++++ i18n/ru.po | 138 +++++++++++++++++ i18n/sk.po | 117 +++++++++++++++ i18n/sl.po | 119 +++++++++++++++ i18n/sr.po | 138 +++++++++++++++++ i18n/sv.po | 119 +++++++++++++++ i18n/th.po | 138 +++++++++++++++++ i18n/tr.po | 140 ++++++++++++++++++ i18n/uk.po | 138 +++++++++++++++++ i18n/vi.po | 117 +++++++++++++++ i18n/zh_CN.po | 137 +++++++++++++++++ i18n/zh_TW.po | 138 +++++++++++++++++ models/__init__.py | 4 + models/iap_account.py | 36 +++++ .../js/services/iap_notification_service.js | 45 ++++++ static/src/scss/iap_mail.dark.scss | 3 + static/src/scss/iap_mail.scss | 4 + 44 files changed, 4922 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 data/mail_templates.xml create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hu.po create mode 100644 i18n/iap_mail.pot create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/iap_account.py create mode 100644 static/src/js/services/iap_notification_service.js create mode 100644 static/src/scss/iap_mail.dark.scss create mode 100644 static/src/scss/iap_mail.scss diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..21ff7c2 --- /dev/null +++ b/__init__.py @@ -0,0 +1,3 @@ +# -*- encoding: utf-8 -*- + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..73b51b0 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +{ + 'name': "IAP / Mail", + 'summary': """Bridge between IAP and mail""", + 'description': """Bridge between IAP and mail""", + 'category': 'Hidden/Tools', + 'version': '1.0', + 'depends': [ + 'iap', + 'mail', + ], + 'installable': True, + 'auto_install': True, + 'data': [ + 'data/mail_templates.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'iap_mail/static/src/js/**/*', + 'iap_mail/static/src/scss/iap_mail.scss', + ], + "web.dark_mode_assets_backend": [ + 'iap_mail/static/src/scss/iap_mail.dark.scss', + ], + }, + 'license': 'LGPL-3', +} diff --git a/data/mail_templates.xml b/data/mail_templates.xml new file mode 100644 index 0000000..5f7bc9e --- /dev/null +++ b/data/mail_templates.xml @@ -0,0 +1,118 @@ + + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..8f397ad --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" نوع الشركة " + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" تأسست" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" التقنيات المستخدمة" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" البريد الإلكتروني" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" المنطقة زمنية" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" القطاعات" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" الإيرادات المقدرة" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" هاتف" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" تويتر" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" الموظفين" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " لكل سنة " + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "شراء رصيد أكثر" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "حساب IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "المتابعين " + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..60be54f --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Albena Mincheva , 2023 +# Anton Vassilev, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anton Vassilev, 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Акаунт" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "последователи" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..76249a5 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# marcescu, 2023 +# Quim - eccit , 2023 +# Ivan Espinola, 2023 +# Carles Antoli , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Carles Antoli , 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tipus de companyia" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" S'ha trobat" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tecnologies usades" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Correu electrònic" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zona horària" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sectors" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Ingressos estimats" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telèfon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Empleats" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per any" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Compra més crèdits" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Compte IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "seguidors" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..8564123 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# Rastislav Brencic , 2023 +# Jakub Smolka, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jakub Smolka, 2024\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektory" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " za rok" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Koupit více kreditů" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Účet" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "sledující" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..9ddf4c6 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per år" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Køb mere kredit" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Konto" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "følgere" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..26abc48 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Unternehmenstyp" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Gegründet" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Verwendete Technologien" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-Mail" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zeitzone" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektoren" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Geschätzter Umsatz" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Mitarbeiter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " pro Jahr" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Mehr Guthaben kaufen" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP-Konto" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "Follower" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..5f04948 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tipo de empresa" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Fundada" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tecnología utilizada" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Correo electrónico" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zona horaria" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sectores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Ingresos estimados" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Teléfono" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Empleados" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " por año" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Compra más créditos" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Cuenta IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "seguidores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..5537785 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tipo de empresa" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Fundada" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tecnología utilizada" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Correo electrónico" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zona horaria" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sectores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Ingresos estimados" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Teléfono" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Empleados" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " por año" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Comprar más créditos" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Cuenta de compras dentro de la aplicación" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "seguidores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..2679f97 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Triine Aavik , 2023 +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Ettevõtte tüüp" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Asutatud" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tehnoloogiad, mida kasutati" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-post" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Ajavöönd" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektorid" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Hinnanguline tulu" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Töötajad" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "aastas" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Osta punkte juurde" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP konto" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "jälgijad" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..0b6edfc --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Mohammad Tahmasebi , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "حساب IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "دنبال کنندگان" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..b827d0f --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Jarmo Kortetjärvi , 2023 +# Martin Trigaux, 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Yrityksen tyyppi" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Perustettu" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Käytetyt teknologiat" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Sähköposti" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Aikavyöhyke" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Alat" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Arvioidut tulot" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Puhelin" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Työntekijät" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " vuodessa" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Osta lisää krediittejä" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Tili" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "seuraajat" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..a351962 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Type de société" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Fondée" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Technologies utilisées" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Email" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Fuseau horaire" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Secteurs" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Revenus estimés" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Téléphone" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Employés" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " par an" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Acheter plus de crédits" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Compte IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "abonnés" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..06c7661 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Yves Goldberg , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "חשבון IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "עוקבים" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..3a93b6d --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Tamás Németh , 2023 +# Ákos Nagy , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ákos Nagy , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " évente" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP fiók" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "követő" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/iap_mail.pot b/i18n/iap_mail.pot new file mode 100644 index 0000000..3411108 --- /dev/null +++ b/i18n/iap_mail.pot @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 21:55+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..92b3a28 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tipe perusahaan" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Didirikan" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Teknologi yang Digunakan" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Email" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zona waktu" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektor-Sektor" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Perkiraan pendapatan" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telepon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Karyawan-Karyawan" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per tahun" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Beli lebih banyak kredit" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Akun IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "follower" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..d6087c8 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" TIpo di azienda" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Fondato" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tecnologie utilizzate" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-mail" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Fuso orario" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Settori" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Ricavo stimato" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefono" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Dipendenti" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per anno" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Acquista altri crediti" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Account acquisti integrati" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "stanno seguendo" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..f5ca8de --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" 会社タイプ" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" 創立" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" 使用技術" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Eメール" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" タイムゾーン" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" 業界" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" 推定売上高" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" 電話" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" 従業員" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " 年次" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "クレジットを購入する" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "アプリ内課金アカウント" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "フォロワー" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..254eda4 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" 회사 유형" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" 설립" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" 사용 기술" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" 이메일" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" 시간대" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" 분야" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" 예상 수익" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" 전화" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" 트위터" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" 직원" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " 연간" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "추카 크레딧 구매" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP 계정" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "팔로워" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..04d6635 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Linas Versada , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Pirkti daugiau kreditų" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP paskyra" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "prenumeratoriai" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..45fefc5 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Armīns Jeltajevs , 2023 +# JanisJanis , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: JanisJanis , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektori" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "sekotāji" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..419c289 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Bedrijfstype" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Opgericht" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Gebruikte technologieën" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-mail" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Tijdzone" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sectoren" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Geschatte omzet" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefoon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Werknemers" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per jaar" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Koop meer credits" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP account" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "volgers" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..2c8502e --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +"Typ firmy" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +"Założona" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +"Użyte technologie" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +"Email" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +"Strefa czasowa" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +"Sektory" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +"Szacowane dochód" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +"Telefon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +"Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +"Pracownicy" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "rocznie" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Kup więcej kredytu" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Konto IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "obserwatorzy" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..7fbe377 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "Seguidores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..a777cdd --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tipo de empresa" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Fundada em" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Tecnologias utilizadas" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-mail" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Fuso horário" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Setores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Receita estimada" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefone" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" X (Twitter)" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Funcionários" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " por ano" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Comprar mais créditos" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Conta de IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "seguidores" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..1f251f6 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# ILMIR , 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Тип компании" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Основано" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Используемые технологии" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Электронная почта" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Часовой пояс" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Сектора" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Предполагаемый доход" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Телефон" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Сотрудники" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " в год" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Купить больше кредитов" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP учетная запись" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "подписчики" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..db03903 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Kúp viac kreditov" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "Odberatelia" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..c194aad --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Jasmina Macur , 2023 +# Martin Trigaux, 2023 +# Tadej Lupšina , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tadej Lupšina , 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Kupite več kreditov" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Račun" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "sledilci" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..684da98 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Milan Bojovic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Tip kompanije" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Osnovano" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" korišćenje tehnologije" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Email" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Vremenske zone" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sectori" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Procenjeni prihod" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Zaposleni" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " godišnje" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Kupite više kredita" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Nalog" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "pratioci" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..02f5bbe --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Lasse L, 2023 +# Martin Trigaux, 2023 +# Simon S, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Simon S, 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Köp fler krediter" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP-konto" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "Följare formulär" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..deab201 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2024\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" ประเภทบริษัท" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" ก่อตั้ง" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" เทคโนโลยีที่ใช้" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" อีเมล" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" เขตเวลา" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" ส่วน" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" รายได้โดยประมาณ" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" โทรศัพท์" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" พนักงาน" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr "ต่อปี" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "ซื้อเครดิตเพิ่ม" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "บัญชี IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "ผู้ติดตาม" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..3b400e7 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Umur Akın , 2023 +# Murat Kaplan , 2023 +# Halil, 2023 +# abc Def , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: abc Def , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Şirket türü" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Bulundu" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Teknolojiler Kullanıldı" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" E-posta" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Zaman Dilimi" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Sektörler" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Tahmini gelir" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Telefon" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Çalışanlar" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " yıl başına" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Daha fazla kredi al" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP Hesabı" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "takipçiler" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..2872b83 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Alina Lisnenko , 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" Тип компанії" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" Знайдено" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" Технології, що використовуються" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" Email" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" Часовий пояс" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" Сектори" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" Очікуваний дохід" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" Телефон" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" Співробітники" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " на рік" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Отримати більше кредитів" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Рахунок IAP " + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "підписники" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..d4a3050 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " per year" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "Buy more credits" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "Tài khoản IAP" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "theo dõi" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..d3af279 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" 公司类型" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" 已成立" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" 使用的技术" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" 电子邮件" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" 时区" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" 部门" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" 预计收入" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" 电话" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" 员工" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " 每年" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "购买更多信用" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP 账户" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "关注者" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..78fce57 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * iap_mail +# +# Translators: +# Wil Odoo, 2023 +# Tony Ng, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tony Ng, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Company type" +msgstr "" +"\n" +" 公司類型" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Founded" +msgstr "" +"\n" +" 成立" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Technologies Used" +msgstr "" +"\n" +" 使用的技術" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Email" +msgstr "" +"\n" +" 電郵" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Timezone" +msgstr "" +"\n" +" 時區" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Sectors" +msgstr "" +"\n" +" 行業範疇" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Estimated revenue" +msgstr "" +"\n" +" 估計收入" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Phone" +msgstr "" +"\n" +" 電話" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Twitter" +msgstr "" +"\n" +" Twitter" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "" +"\n" +" Employees" +msgstr "" +"\n" +" 員工" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid " per year" +msgstr " 每年" + +#. module: iap_mail +#. odoo-javascript +#: code:addons/iap_mail/static/src/js/services/iap_notification_service.js:0 +#, python-format +msgid "Buy more credits" +msgstr "購買更多點數" + +#. module: iap_mail +#: model:ir.model,name:iap_mail.model_iap_account +msgid "IAP Account" +msgstr "IAP 帳戶" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "followers" +msgstr "訂閱者" + +#. module: iap_mail +#: model_terms:ir.ui.view,arch_db:iap_mail.enrich_company +msgid "http://www.twitter.com/" +msgstr "http://www.twitter.com/" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..055d266 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import iap_account diff --git a/models/iap_account.py b/models/iap_account.py new file mode 100644 index 0000000..a3d899c --- /dev/null +++ b/models/iap_account.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import api, models + + +class IapAccount(models.Model): + _inherit = 'iap.account' + + @api.model + def _send_success_notification(self, message, title=None): + self._send_status_notification(message, 'success', title=title) + + @api.model + def _send_error_notification(self, message, title=None): + self._send_status_notification(message, 'danger', title=title) + + @api.model + def _send_status_notification(self, message, status, title=None): + params = { + 'message': message, + 'type': status, + } + + if title is not None: + params['title'] = title + + self.env['bus.bus']._sendone(self.env.user.partner_id, 'iap_notification', params) + + @api.model + def _send_no_credit_notification(self, service_name, title): + params = { + 'title': title, + 'type': 'no_credit', + 'get_credits_url': self.env['iap.account'].get_credits_url(service_name), + } + self.env['bus.bus']._sendone(self.env.user.partner_id, 'iap_notification', params) diff --git a/static/src/js/services/iap_notification_service.js b/static/src/js/services/iap_notification_service.js new file mode 100644 index 0000000..d4d53d8 --- /dev/null +++ b/static/src/js/services/iap_notification_service.js @@ -0,0 +1,45 @@ +/** @odoo-module **/ + +import { _t } from "@web/core/l10n/translation"; +import { registry } from "@web/core/registry"; + +import { markup } from "@odoo/owl"; + +export const iapNotificationService = { + dependencies: ["bus_service", "notification"], + + start(env, { bus_service, notification }) { + bus_service.subscribe("iap_notification", (params) => { + if (params.type == "no_credit") { + displayCreditErrorNotification(params); + } else { + displayNotification(params); + } + }); + bus_service.start(); + + function displayNotification(params) { + notification.add(params.message, { + title: params.title, + type: params.type, + }); + } + + function displayCreditErrorNotification(params) { + // ℹ️ `_t` can only be inlined directly inside JS template literals + // after Babel has been updated to version 2.12. + const translatedText = _t("Buy more credits"); + const message = markup(` + + + ${translatedText} + `); + notification.add(message, { + title: params.title, + type: 'danger', + }); + } + } +}; + +registry.category("services").add("iapNotification", iapNotificationService); diff --git a/static/src/scss/iap_mail.dark.scss b/static/src/scss/iap_mail.dark.scss new file mode 100644 index 0000000..b7fa57e --- /dev/null +++ b/static/src/scss/iap_mail.dark.scss @@ -0,0 +1,3 @@ +.o_partner_autocomplete_enrich_info label { + background-color: var(--gray-white-25) !important; +} diff --git a/static/src/scss/iap_mail.scss b/static/src/scss/iap_mail.scss new file mode 100644 index 0000000..727487e --- /dev/null +++ b/static/src/scss/iap_mail.scss @@ -0,0 +1,4 @@ +.o_partner_autocomplete_enrich_info i { + /* To prevent the icons from being cropped when there is not enough available space */ + min-width: fit-content; +}