From 567bf1a85579c8d1adb65130c58656e53c494393 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:19:29 +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 | 4 +++ __manifest__.py | 16 +++++++++ i18n/ar.po | 52 +++++++++++++++++++++++++++++ i18n/bg.po | 54 ++++++++++++++++++++++++++++++ i18n/ca.po | 57 ++++++++++++++++++++++++++++++++ i18n/cs.po | 54 ++++++++++++++++++++++++++++++ i18n/da.po | 52 +++++++++++++++++++++++++++++ i18n/de.po | 52 +++++++++++++++++++++++++++++ i18n/es.po | 53 +++++++++++++++++++++++++++++ i18n/es_419.po | 52 +++++++++++++++++++++++++++++ i18n/et.po | 55 ++++++++++++++++++++++++++++++ i18n/fa.po | 54 ++++++++++++++++++++++++++++++ i18n/fi.po | 55 ++++++++++++++++++++++++++++++ i18n/fr.po | 52 +++++++++++++++++++++++++++++ i18n/he.po | 54 ++++++++++++++++++++++++++++++ i18n/hu.po | 54 ++++++++++++++++++++++++++++++ i18n/id.po | 52 +++++++++++++++++++++++++++++ i18n/it.po | 52 +++++++++++++++++++++++++++++ i18n/ja.po | 52 +++++++++++++++++++++++++++++ i18n/ko.po | 52 +++++++++++++++++++++++++++++ i18n/lt.po | 54 ++++++++++++++++++++++++++++++ i18n/lv.po | 54 ++++++++++++++++++++++++++++++ i18n/nl.po | 52 +++++++++++++++++++++++++++++ i18n/pl.po | 52 +++++++++++++++++++++++++++++ i18n/pt.po | 52 +++++++++++++++++++++++++++++ i18n/pt_BR.po | 53 +++++++++++++++++++++++++++++ i18n/ru.po | 53 +++++++++++++++++++++++++++++ i18n/sk.po | 52 +++++++++++++++++++++++++++++ i18n/sl.po | 53 +++++++++++++++++++++++++++++ i18n/sr.po | 52 +++++++++++++++++++++++++++++ i18n/sv.po | 55 ++++++++++++++++++++++++++++++ i18n/th.po | 52 +++++++++++++++++++++++++++++ i18n/tr.po | 56 +++++++++++++++++++++++++++++++ i18n/uk.po | 52 +++++++++++++++++++++++++++++ i18n/vi.po | 52 +++++++++++++++++++++++++++++ i18n/website_crm_livechat.pot | 48 +++++++++++++++++++++++++++ i18n/zh_CN.po | 52 +++++++++++++++++++++++++++++ i18n/zh_TW.po | 52 +++++++++++++++++++++++++++++ models/__init__.py | 6 ++++ models/chatbot_script_step.py | 16 +++++++++ models/crm_lead.py | 21 ++++++++++++ models/discuss_channel.py | 19 +++++++++++ views/website_crm_lead_views.xml | 16 +++++++++ 43 files changed, 2002 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py 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/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/website_crm_livechat.pot create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/chatbot_script_step.py create mode 100644 models/crm_lead.py create mode 100644 models/discuss_channel.py create mode 100644 views/website_crm_lead_views.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dc5e6b6 --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..78130b9 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': 'Lead Livechat Sessions', + 'category': 'Website/Website', + 'summary': 'View livechat sessions for leads', + 'version': '1.0', + 'description': """ Adds a stat button on lead form view to access their livechat sessions.""", + 'depends': ['website_crm', 'website_livechat'], + 'data': [ + 'views/website_crm_lead_views.xml', + ], + 'installable': True, + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..73de841 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "عدد الجلسات " + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "العميل المهتم الجديد لـ%s " + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "خطوة نَص Chatbot " + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "قناة المناقشة" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "عميل مهتم/فرصة " + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "الجلسات" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..ced097e --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Ивайло Малинов , 2023 +# Rosen Vladimirov , 2023 +# Albena Mincheva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Albena Mincheva , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Дискусионен канал" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Лийд / Възможност" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Сесии" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..92412ae --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# José Cabrera Lozano , 2023 +# Ivan Espinola, 2023 +# jabiri7, 2023 +# Arnau Ros, 2023 +# Manel Fernandez Ramirez , 2023 +# Quim - eccit , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Quim - eccit , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sessions" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Capçalera nova de %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Pas de l'script de Chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de debat" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciativa/Oportunitat" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessions " diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..f42a43e --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Jakub Smolka, 2023 +# Ivana Bartonkova, 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "počet Sessions" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbot krok skriptu" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Diskuzní kanál" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospekt/příležitost" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Prodejní relace" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..fe8518f --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sessioner" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Kundeemne/Salgsmulighed" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Ekspeditioner" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..44957ee --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sitzungen" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Neuer Lead von %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbot-Skript-Schritt" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Verkaufschance" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sitzungen" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..180d220 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# de Sesiones" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Nuevo lead de %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Paso de guion del chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Oportunidad" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesiones" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..af0ab89 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "Número de sesiones" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Nuevo lead de %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Paso de guion del bot de chat" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/oportunidad" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesiones" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..3a9be67 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Piia Paurson , 2023 +# Leaanika Randmets, 2023 +# Rivo Zängov , 2023 +# Triine Aavik , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Triine Aavik , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sessioonid" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s uus müügivihje" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatboti skripti samm" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Sõnumite kanal" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Müügivihje/müügivõimalus" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessioonid" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..e1f652e --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# F Hariri , 2023 +# Martin Trigaux, 2023 +# Hanna Kheradroosta, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Hanna Kheradroosta, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "کانال گفتگو" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "سرنخ / فرصت" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "جلسات" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..4337eab --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Kari Lindgren , 2023 +# Martin Trigaux, 2023 +# Jarmo Kortetjärvi , 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Istunnot" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s uusi liidi" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbotin käsikirjoituksen askel" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Keskustelukanava" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Liidi/mahdollisuus" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Istunnot" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..e23faeb --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sessions" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Nouvelle piste de %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Étape de script du chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de discussion" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Piste/opportunité" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessions" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..0ae6b4a --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# דודי מלכה , 2023 +# Martin Trigaux, 2023 +# Lilach Gilliam , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Lilach Gilliam , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "מספר הפעלות" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "ערוץ דיון" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "ליד/הזדמנות" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "הפעלות" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..7352146 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Tamás Németh , 2023 +# Ákos Nagy , 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Kommunikációs csatorna" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Érdeklődés/Lehetőség" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Értékesítési folyamatok" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..72e7b48 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sesi" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Lead Baru %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Langkah Script Chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Saluran Diskusi" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospek/Peluang" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesi" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..b4ffa74 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "N. sessioni" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Nuovo contatto di %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbot Script Step" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canale di discussione" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Contatto/Opportunità" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessioni" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..25188c8 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# セッション" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%sの新しいリード" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "チャットボットスクリプト ステップ" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "ディスカッションチャンネル" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "リード / 案件" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "セッション" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..5858e86 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# 세션" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s 의 신규 영업제안" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "챗봇 스크립트 단계" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "메일 및 채팅 채널" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "영업제안/영업기회" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "세션" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..db54ff2 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Jonas Zinkevicius , 2023 +# Andrius Laukavičius , 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "Sesijos nr." + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Diskusijų kanalas" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Iniciatyva/Galimybė" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesijos" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..486c281 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# ievaputnina , 2023 +# Arnis Putniņš , 2023 +# Armīns Jeltajevs , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Armīns Jeltajevs , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# sessijas" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Saziņas kanāls" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Opportunity" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesijas" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..55b9c4c --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sessies" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s's Nieuwe lead" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbot-scriptstap" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Chatkanaal" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Verkoopkans" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessies" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..1924db2 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sesje" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Nowy sygnał %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Krok skryptu czatbota" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Kanał dyskusyjny" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Sygnał/Szansa" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesje" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..ff28c54 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de Discussão" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Prospecto / Oportunidade" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessões" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..8248989 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Wil Odoo, 2023 +# Layna Nascimento, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Layna Nascimento, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "Nº de sessões" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Novo lead de %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Etapa do script do chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Canal de discussão" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Oportunidade" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessões" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..e938189 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# alenafairy, 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Сессии" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Новый лид %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Шаг сценария чатбота" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Дискуссионный канал" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Потенциальные сделки" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Сессии" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..7e8e8e6 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Relácie" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Diskusný kanál" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Potenciálna príležitosť / obchodný prípad" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Relácie" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..2cab3c3 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Matjaz Mozetic , 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Indic/Priložnost" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Seje" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..81891fe --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Dragan Vukosavljevic , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Dragan Vukosavljevic , 2023\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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Sesije" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s's Novi lid" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Korak skripte za Chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Kanal diskusije" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lid/Prodajna prilika" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sesije" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..9e47788 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Lasse L, 2023 +# Chrille Hedberg , 2023 +# Mikael Åkerberg , 2023 +# Kim Asplund , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Kim Asplund , 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# sessioner" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s:s nya affärsmöjligheter" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Steg för skript för chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Kanal" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Affärsmöjlighet/Möjlighet" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Sessioner" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..42776b1 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# เซสชั่น" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "ลูกค้าเป้าหมายใหม่ของ %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "ขั้นตอนสคริปต์แชทบอท" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "ช่องการสนทนา" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "ลูกค้าเป้าหมาย/ผู้ที่มีโอกาสจะซื้อ" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "เซสชั่น" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..7ca1aa1 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# Translators: +# Halil, 2023 +# İlknur Gözütok, 2023 +# Ediz Duman , 2023 +# Murat Kaplan , 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Oturumlar" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s'in Yeni Adayı" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Chatbot Komut Dosyası Adımı" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Mesajlaşma Kanalı" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Aday/Fırsat" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Oturumlar" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..d8409ef --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "К-сть сесій" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s Нових лідів" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Крок скрипта чатботу" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Канал обговорення" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Лід/Нагода" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Сесії" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..f4ef9a2 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# Phiên" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "Lead mới của %s" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "Bước kịch bản chatbot" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "Kênh thảo luận" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "Lead/Cơ hội" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "Phiên" diff --git a/i18n/website_crm_livechat.pot b/i18n/website_crm_livechat.pot new file mode 100644 index 0000000..44d5338 --- /dev/null +++ b/i18n/website_crm_livechat.pot @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..8ed42a0 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# 会话" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s 的新线索" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "聊天机器人脚本步骤" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "讨论频道" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "线索/商机" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "会话" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..dfe6823 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_crm_livechat +# +# 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 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: website_crm_livechat +#: model:ir.model.fields,field_description:website_crm_livechat.field_crm_lead__visitor_sessions_count +msgid "# Sessions" +msgstr "# 對話視窗" + +#. module: website_crm_livechat +#. odoo-python +#: code:addons/website_crm_livechat/models/chatbot_script_step.py:0 +#, python-format +msgid "%s's New Lead" +msgstr "%s 的新潛在商機" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_chatbot_script_step +msgid "Chatbot Script Step" +msgstr "聊天機器人程式碼步驟" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_discuss_channel +msgid "Discussion Channel" +msgstr "討論群組" + +#. module: website_crm_livechat +#: model:ir.model,name:website_crm_livechat.model_crm_lead +msgid "Lead/Opportunity" +msgstr "潛在商機/商機" + +#. module: website_crm_livechat +#: model_terms:ir.ui.view,arch_db:website_crm_livechat.crm_lead_view_form +msgid "Sessions" +msgstr "對話視窗" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..5d7db31 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import chatbot_script_step +from . import crm_lead +from . import discuss_channel diff --git a/models/chatbot_script_step.py b/models/chatbot_script_step.py new file mode 100644 index 0000000..17569b7 --- /dev/null +++ b/models/chatbot_script_step.py @@ -0,0 +1,16 @@ + +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import _, models + + +class ChatbotScriptStep(models.Model): + _inherit = 'chatbot.script.step' + + def _chatbot_crm_prepare_lead_values(self, discuss_channel, description): + values = super()._chatbot_crm_prepare_lead_values(discuss_channel, description) + if discuss_channel.livechat_visitor_id: + values['name'] = _("%s's New Lead", discuss_channel.livechat_visitor_id.display_name) + values['visitor_ids'] = [(4, discuss_channel.livechat_visitor_id.id)] + return values diff --git a/models/crm_lead.py b/models/crm_lead.py new file mode 100644 index 0000000..031ceb5 --- /dev/null +++ b/models/crm_lead.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, fields, models + + +class Lead(models.Model): + _inherit = 'crm.lead' + + visitor_sessions_count = fields.Integer('# Sessions', compute="_compute_visitor_sessions_count", groups="im_livechat.im_livechat_group_user") + + @api.depends('visitor_ids.discuss_channel_ids') + def _compute_visitor_sessions_count(self): + for lead in self: + lead.visitor_sessions_count = len(lead.visitor_ids.discuss_channel_ids) + + def action_redirect_to_livechat_sessions(self): + visitors = self.visitor_ids + action = self.env["ir.actions.actions"]._for_xml_id("website_livechat.website_visitor_livechat_session_action") + action['domain'] = [('livechat_visitor_id', 'in', visitors.ids), ('has_message', '=', True)] + return action diff --git a/models/discuss_channel.py b/models/discuss_channel.py new file mode 100644 index 0000000..dd9f73a --- /dev/null +++ b/models/discuss_channel.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class DiscussChannel(models.Model): + _inherit = 'discuss.channel' + + def _convert_visitor_to_lead(self, partner, key): + """ When website is installed, we can link the created lead from /lead command + to the current website_visitor. We do not use the lead name as it does not correspond + to the lead contact name.""" + lead = super()._convert_visitor_to_lead(partner, key) + visitor_sudo = self.livechat_visitor_id.sudo() + if visitor_sudo: + visitor_sudo.write({'lead_ids': [(4, lead.id)]}) + lead.country_id = lead.country_id or visitor_sudo.country_id + return lead diff --git a/views/website_crm_lead_views.xml b/views/website_crm_lead_views.xml new file mode 100644 index 0000000..7628c24 --- /dev/null +++ b/views/website_crm_lead_views.xml @@ -0,0 +1,16 @@ + + + + crm.lead.view.form.inherit.website.crm.livechat + crm.lead + + + + + + + +