Initial commit: Crm packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 21a345b5b9
654 changed files with 418312 additions and 0 deletions

View file

@ -0,0 +1,45 @@
# CRM Livechat
Create new lead with using /lead command in the channel
## Installation
```bash
pip install odoo-bringout-oca-ocb-crm_livechat
```
## Dependencies
This addon depends on:
- crm
- im_livechat
## Manifest Information
- **Name**: CRM Livechat
- **Version**: N/A
- **Category**: Sales/CRM
- **License**: LGPL-3
- **Installable**: False
## Source
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `crm_livechat`.
## License
This package maintains the original LGPL-3 license from the upstream Odoo project.
## Documentation
- Overview: doc/OVERVIEW.md
- Architecture: doc/ARCHITECTURE.md
- Models: doc/MODELS.md
- Controllers: doc/CONTROLLERS.md
- Wizards: doc/WIZARDS.md
- Install: doc/INSTALL.md
- Usage: doc/USAGE.md
- Configuration: doc/CONFIGURATION.md
- Dependencies: doc/DEPENDENCIES.md
- Troubleshooting: doc/TROUBLESHOOTING.md
- FAQ: doc/FAQ.md

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models

View file

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'CRM Livechat',
'category': 'Sales/CRM',
'summary': 'Create lead from livechat conversation',
'data': [
'data/utm_data.xml',
'data/crm_livechat_chatbot_data.xml',
'views/chatbot_script_views.xml',
'views/chatbot_script_step_views.xml',
],
'depends': [
'crm',
'im_livechat'
],
'description': 'Create new lead with using /lead command in the channel',
'auto_install': True,
'license': 'LGPL-3',
'assets': {
'mail.assets_messaging': [
'crm_livechat/static/src/models/*.js',
],
},
}

View file

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data noupdate="1">
<!--
This provides a working lead generation chatbot for people to work with.
It's placed into 'data' to give them a starting point.
From that record, they can duplicate / adapt / delete / ...
-->
<record id="chatbot_script_lead_generation_bot" model="chatbot.script">
<field name="title">Lead Generation Bot</field>
<field name="image_1920" type="base64" file="mail/static/src/img/odoobot.png"/>
</record>
<record id="chatbot_script_lead_generation_step_welcome" model="chatbot.script.step">
<field name="message">Hi there, what brings you to our website today? 👋</field>
<field name="sequence">1</field>
<field name="step_type">free_input_multi</field>
<field name="chatbot_script_id" ref="chatbot_script_lead_generation_bot"/>
</record>
<record id="chatbot_script_lead_generation_step_forward_operator" model="chatbot.script.step">
<field name="sequence">2</field>
<field name="step_type">forward_operator</field>
<field name="chatbot_script_id" ref="chatbot_script_lead_generation_bot"/>
</record>
<record id="chatbot_script_lead_generation_step_noone_available" model="chatbot.script.step">
<field name="message">Hu-ho, it looks like none of our operators are available 🙁</field>
<field name="sequence">3</field>
<field name="step_type">text</field>
<field name="chatbot_script_id" ref="chatbot_script_lead_generation_bot"/>
</record>
<record id="chatbot_script_welcome_step_pricing_email" model="chatbot.script.step">
<field name="message">Would you mind leaving your email address so that we can reach you back?</field>
<field name="sequence">4</field>
<field name="step_type">question_email</field>
<field name="chatbot_script_id" ref="chatbot_script_lead_generation_bot"/>
</record>
<record id="chatbot_script_welcome_step_just_looking" model="chatbot.script.step">
<field name="message">Thank you, you should hear back from us very soon!</field>
<field name="sequence">5</field>
<field name="step_type">create_lead</field>
<field name="chatbot_script_id" ref="chatbot_script_lead_generation_bot"/>
</record>
</data></odoo>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="utm.source" id="utm_source_livechat">
<field name="name">Livechat</field>
</record>
</odoo>

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: am\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,119 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Malaz Abuidris <msea@odoo.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "العميل المهتم الجديد لـ%s "
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "نص Chatbot "
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "خطوة نَص Chatbot "
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "إنشاء عميل مهتم "
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "إنشاء عميل مهتم جديد (/lead مسمى العميل المهتم) "
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "تم إنشاء عميل مهتم جديد: %s "
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "قناة المناقشة"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "عدد العملاء المهتمين الذين تم إنشاؤهم "
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "مرحباً، ما سبب تصفحك لموقعنا الإلكتروني اليوم؟ 👋 "
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "أوه لا، يبدو أنه لا يوجد أي موظفون متاحون 🙁 "
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot إنشاء العملاء المهتمين "
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "العملاء المهتمين "
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "فريق المبيعات"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "نوع الخطوة "
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "شكراً لك، سنرد عليك في أقرب فرصة ممكنة! "
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"يُستخدَم معاً مع نوع الخطوة 'create_lead' حتى يتم إسناد العميل المهتم/الفرصة"
" المنشأة تلقائياً إلى الفريق المحدد "
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "هلّا تركت عنوان بريدك الإلكتروني حتى نتمكن من التواصل معك؟ "

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# erpgo translator <jumshud@erpgo.az>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Potensial Müştəri Yaradın"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Müzakirə Kanalı"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Hədəf Müştərilər"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Satış Komandası"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Ivan Shakh, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ivan Shakh, 2024\n"
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Каманда продажаў"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,120 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
# kalatchev, 2023
# Kaloyan Naumov <kaloyan@lumnus.net>, 2023
# Milena Georgieva, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Milena Georgieva, 2024\n"
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Създаване на ново водещи заглавие(/чат)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Дискусионен канал"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Бот за генериране на потенциални клиенти"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Лийдове"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Търговски отдел"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s novi potencijalni klijent"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot skript"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Korak chatbot skripte"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Kreiraj potencijalnog klijenta"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Kreiraj novi potencijal (potencijal/naslov potencijala)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Kreiran novi potencijalni klijent: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kanal rasprave"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Broj generiranih potencijalnih klijenata"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Zdravo, šta vas dovodi na našu web stranicu danas? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, izgleda da nijedan od naših operatera nije dostupan 😔"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot za generiranje potencijalnih klijenata"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Potencijali"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Prodajni tim"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tip koraka"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Hvala vam, trebali biste uskoro čuti od nas!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,127 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Arnau Ros, 2022
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2022
# marcescu, 2022
# jabiri7, 2022
# Ivan Espinola, 2022
# Noemi Pla, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Noemi Pla, 2025\n"
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Capçalera nova de %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Script de Chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Pas de l'script de Chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Crear una oportunitat"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Crear una nova iniciativa (/lead títol iniciativa)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "S'ha creat un nou avantatge: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de debat"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Nombre de títols generats"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hola, què et porta al nostre lloc web avui? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Sembla que cap dels nostres operadors està disponible"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot de generació principal"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Iniciatives"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Equip de vendes"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipus de pas"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Gràcies, hauria de sentir-nos parlar molt aviat!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"S'utilitza en combinació amb el tipus de pas «createlead» per tal d'assignar"
" automàticament el plom/oportunitat creada a l'equip definit"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Li importaria deixar la seva adreça de correu electrònic perquè puguem "
"tornar-li a buscar?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,124 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
# Marek Záda, 2022
# Martin Trigaux, 2022
# Jakub Smolka, 2023
# Marta Wacławek, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marta Wacławek, 2025\n"
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot skript"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot krok skriptu"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
"Vytvořit nový potenciální zákazník (/potenciální zákazník název případu)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskusní kanál"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Jejda, vypadá to, že žádný z naších operátorů není k dispozici 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Potenciální zákazníci"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Obchodní tým"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Typ kroku"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Mohli byste zanechat svou emailovou adresy, abychom vás mohli kontaktovat "
"zpět?"

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Sanne Kristensen <sanne@vkdata.dk>, 2024
# Kira Petersen, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Kira Petersen, 2025\n"
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s's nye kundeemne"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot-skript"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot Script Step"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Opret kundeemne"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Opret et nyt kundeemne (/titel på kundeemne)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Opret et nye kundeemne: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskussionskanal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Antal genererede kundeemner"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hejsa! Hvad bringer dig forbi vores hjemmeside i dag? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Åh nej, det ser ud til, at alle operatører er optaget 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot til generering af kundeemne"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Kundeemner"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Salgsteam"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Trin type"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Tak, du hører fra os snarest!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Anvendes i kombination med trin-typen 'create_lead' til automatisk tildeling"
" af oprettede kundeemner/salgsmuligheder til det specifikke team"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Har du noget imod at give os din e-mailadresse, så vi kan kontakte dig?"

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Friederike Fasterling-Nesselbosch, 2022
# Martin Trigaux, 2023
# Larissa Manderfeld, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Larissa Manderfeld, 2023\n"
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Neuer Lead von %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot-Skript"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot-Skript-Schritt"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Lead erstellen"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Einen neuen Lead erstellen (/Lead Leadtitel)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Neuer Lead erstellt: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskussionskanal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Anzahl erzeugter Leads"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hallo, was führt Sie heute auf unsere Website? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
"Oh oh, es sieht so aus, als ob keiner unserer Mitarbeiter verfügbar ist 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Lead-Generierungsbot"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Verkaufsteam"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Schritttyp"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Vielen Dank, Sie sollten sehr bald von uns hören!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Verwendet in Kombination mit Schritttyp „create_lead“, um erstellte "
"Leads/Verkaufschancen dem bestimmten Team automatisch zuzuweisen"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Würden Sie uns Ihre E-Mail-Adresse hinterlassen, damit wir Sie erreichen "
"können?"

View file

@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~11.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-18 09:49+0000\n"
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Δημιουργία νέας σύστασης (/lead Τίτλος Σύστασης)"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
"Δημιουργία νέας σύστασης: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr "Κανάλι Συζήτησης"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
# Larissa Manderfeld, 2023
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Wil Odoo, 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: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Nuevo lead de %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Guion del chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Paso de guion del chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Crear lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Crear un nuevo lead (/lead título de lead)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Ha creado un nuevo lead: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de conversaciones"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Número de leads generados"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hola, ¿qué le trae hoy a nuestro sitio web? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Oh, no, parece que ninguno de nuestros operadores está disponible 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot de generación de leads"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Equipo de ventas"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipo de paso"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Gracias, ¡le responderemos muy pronto!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Se utiliza en combinación con el tipo de paso 'create_lead' para asignar "
"automáticamente el lead creado u la oportunidad creada al equipo definido"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"¿Podría proporcionarnos su dirección de correo electrónico para que podamos "
"contactarle?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_BO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_CR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_DO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_EC\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
# Fernanda Alvarez, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Fernanda Alvarez, 2025\n"
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_MX\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Nuevo lead de %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Guion del bot de chat"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Paso del guion del bot de chat"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Crear lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Crear un nuevo lead (/título de lead)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Se creó un nuevo lead: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de conversaciones"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Número de leads generados"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hola, ¿cuál es el motivo de tu visita? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Uy, parece que ninguno de nuestros operadores está disponible 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot de generación de leads"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Equipo de ventas"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipo de paso"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Gracias, ¡le responderemos muy pronto!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Se utiliza en combinación con el tipo de paso 'create_lead' para asignar de "
"forma automática el lead u oportunidad creada al equipo definido"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"¿Podría proporcionarnos su dirección de correo electrónico para que podamos "
"contactarle?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_PY\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es_VE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Algo Kärp <algokarp@gmail.com>, 2022
# Piia Paurson <piia@avalah.ee>, 2022
# Eneli Õigus <enelioigus@gmail.com>, 2022
# Leaanika Randmets, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Leaanika Randmets, 2023\n"
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s uus müügivihje"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatboti skript"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatboti skripti samm"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Loo müügivihje"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Looge uus müügivihje"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Uue müügivihje looja: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Sõnumite kanal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Genereeritud müügivihje loendus"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hei, mis toob teid täna meie veebilehele? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Oi, tundub, et ükski meie operaator ei ole saadaval 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Müügivihjete genereerimise robot"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Müügivihjed"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Müügimeeskond"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Sammutüüp"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Täname! Võtame teiega peatselt ühendust!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Kasutatakse koos sammutüübiga 'create_lead', et määrata loodud "
"müügivihje/võimalus valitud meeskonnale automaatselt"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Kas jätaksite oma e-posti aadressi, et saaksime teiega ühendust võtta?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# F Hariri <fhari1234@gmail.com>, 2023
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
# Martin Trigaux, 2023
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fa\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s سرنخ جدید"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "متن چت‌بات"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "مرحله متن چت‌بات"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "ایجاد سرنخ"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "ایجاد یک سرنخ جدید (/lead عنوان سرنخ)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "ایجاد یک سرنخ جدید: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "کانال گفتگو"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "تعداد سرنخ‌های تولید شده"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "سلام، چه چیزی شما را امروز به وب‌سایت ما آورده است؟ 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "اوه، به نظر می‌رسد هیچ‌یک از اپراتورهای ما در دسترس نیستند 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "ربات تولید سرنخ"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "سرنخ ها"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "تیم فروش"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "نوع مرحله"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "بسیار سپاسگزاریم، به زودی پاسخی از ما دریافت خواهید کرد!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"برای استفاده در ترکیب با نوع گام 'create_lead' به منظور اختصاص خودکار "
"سرنخ/فرصت ایجاد شده به تیم تعریف شده"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"آیا مایل هستید آدرس ایمیل خود را بگذارید تا بتوانیم با شما تماس بگیریم؟"

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
# Martin Trigaux, 2022
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s uusi liidi"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot käsikirjoitus"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbotin käsikirjoituksen askel"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Luo liidi"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Luo uusi liidi (/lead liidin otsikko)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Luotu uusi liidi: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Keskustelukanava"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Luotu liidien määrä"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hei, mikä tuo sinut verkkosivuillemme tänään? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
"No voihan... näyttää siltä, että kukaan operaattoreistamme ei ole paikalla 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Liidienluontibotti"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Liidit"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Myyntitiimi"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Vaiheen tyyppi"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Kiitos, otamme teihin yhteyttä pian!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Käytetään yhdessä 'create_lead'-vaihetyypin kanssa, jotta luotu liidi tai "
"myyntimahdollisuus voidaan vastuuttaa automaattisesti määriteltyyn tiimiin"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "Jättäisitkö sähköpostiosoitteesi jotta voimme ottaa sinuun yhteyttä?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Cécile Collart <cco@odoo.com>, 2022
# Jolien De Paepe, 2023
# Manon Rondou, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Manon Rondou, 2024\n"
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Nouvelle piste de %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Script du chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Étape de script du chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Créer une piste"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Créer une nouvelle piste (/lead lead title)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Nouvelle piste créée : %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de discussion"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Nombre de pistes générées"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Bonjour, qu'est-ce qui vous amène sur notre site ? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Ho-ho, il semble qu'aucun de nos opérateurs ne soit disponible 🙁."
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot de génération de pistes"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Pistes"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Équipe commerciale"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Type d'étape"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Merci, vous devriez recevoir une réponse de notre part très bientôt !"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Utilisé en combinaison avec une étape de type 'create_lead' afin "
"d'automatiquement assigner la piste/opportunité créée à l'équipe définie"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Pourriez-vous laisser votre adresse e-mail afin que nous puissions vous "
"recontacter ?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: fr_CA\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: gu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,124 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# דודי מלכה <Dudimalka6@gmail.com>, 2022
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
# ExcaliberX <excaliberx@gmail.com>, 2022
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
# Roy Sayag, 2023
# Ha Ketem <haketem@gmail.com>, 2024
# Yoram Lavi, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Yoram Lavi, 2025\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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "הזדמנות חדשה"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot Script"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot Script Step"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "צור ליד"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "צור ליד חדש (או כותרת ליד)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "צור ליד חדש: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "ערוץ דיון"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "מספר הלידים שנוצרו"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "אהלן, מה מביא אותך היום לאתר שלנו? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "אוי, נראה שאף אחד מהצוות לא זמין 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "בוט ליצירת לידים"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "לידים"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "צוות מכירות"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "סוג שלב"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "תודה, ניצור קשר בהקדם האפשרי!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"משמש בשילוב עם step type 'create_lead' על מנת להקצות אוטומטית את "
"ההפניה/ההזדמנות שנוצרה לצוות המוגדר"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "אפשר בבקשה את את כתובת המייל כדי שנוכל לחזור אליך?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,118 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
# Bole <bole@dajmi5.com>, 2022
# Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2022\n"
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Kreiraj novu priliku ( naslov prilike)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kanal rasprave"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Potencijali"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Prodajni tim"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Tamás Németh <ntomasz81@gmail.com>, 2022
# krnkris, 2022
# Pammer József, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Pammer József, 2025\n"
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s új érdeklődése"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot Forgatókönyv"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot Forgatókönyv Lépés"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Érdeklődés létrehozása"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Új érdeklődés létrehozása (/lead Érdeklődés címe)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Új Érdeklődés létrehozva: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kommunikációs csatorna"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Generált Érdeklődések Száma"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Szia, mi hozott ma a weboldalunkra? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hű-ha, úgy néz ki egyik operátorunk sem elérhető 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Érdeklődés Generáló Bot"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Érdeklődések"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Értékesítési csapat"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Lépés Típusa"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Köszönjük, hamarosan jelentkezünk!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"A 'create_lead' lépés típussal együtt van használva annak érdekében, hogy "
"automatikusan hozzárendeljük a létrehozott érdeklődést/lehetőséget a "
"meghatározott csapathoz"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "Megtennéd, hogy megadod az email címed, hogy visszahívhassuk?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: hy\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,119 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Abe Manyo, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Abe Manyo, 2023\n"
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Lead Baru %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Skrip Chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Langkah Script Chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Buat Lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Buat penawaran baru (/judul penawaran)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Membuat lead baru: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Saluran Diskusi"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Jumlah Lead yang Dibuat"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Halo, apa yang membawa Anda ke website kami hari ini? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, sepertinya tidak ada operator kami yang tersedia saat ini 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot Pembuat Lead"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Prospek"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Tim Penjualan"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipe Langkah"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Terima kasih, Anda akan mendengar kabar dari kami sebentar lagi!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Digunakan seiring dengan tipe langkah 'create_lead' agar secara otomatis "
"menetapkan lead/opportunity yang dibuat ke tim yang didefinisikan"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "Tolong tinggalkan alamat email Anda supaya kami dapat membalas Anda"

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Kristófer Arnþórsson, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Kristófer Arnþórsson, 2024\n"
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Söluteymi"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Friederike Fasterling-Nesselbosch, 2022
# Marianna Ciofani, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marianna Ciofani, 2024\n"
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: it\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Nuovo lead di %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot Script"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot Script Step"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Crea lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Crea un nuovo lead (/lead titolo lead)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Creato un nuovo lead: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canale di discussione"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Numero lead generati"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Ciao, cosa ti porta oggi sul nostro sito? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Sembra che nessuno dei nostri operatori sia disponibile. 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot generazione lead"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Lead"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Team di vendita"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipo fase"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Grazie, dovresti ricevere una risposta molto presto!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Utilizzato in combinazione con il tipo di passo 'create_lead' per assegnare "
"automaticamente il lead/opportunità creato al team definito."
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Ti dispiacerebbe lasciare il tuo indirizzo e-mail in modo da poterti "
"contattare?"

View file

@ -0,0 +1,118 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Ryoko Tsuda <ryoko@quartile.co>, 2023
# Junko Augias, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Junko Augias, 2023\n"
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%sの新しいリード"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "チャットボットスクリプト"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "チャットボットスクリプト ステップ"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "リード作成"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "新しいリードを作成する(/lead lead title)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "新規リードを作成済: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "ディスカッションチャンネル"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "作成されたリード数"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "こんにちは、どのようなご用件でしょうか 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "申し訳ございません。オペレーターは誰もいないようです 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "リード生成ボット"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "リード"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "販売チーム"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "ステップタイプ"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "ありがとうございます!お早めにお返事させていただきます。"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr "作成されたリード/案件を定義されたチームに自動的に割り当てるために、'create_lead' ステップタイプと組み合わせて使用されます。"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "折り返しご連絡させていただきますので、メールアドレスを教えていただけますでしょうか?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: kab\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,117 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Sengtha Chay <sengtha@gmail.com>, 2023
# Lux Sok <sok.lux@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: km\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "បង្កើតការនាំមុខថ្មី (/ សំណាងនាំមុខ)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "ប៉ុស្តិ៍ពិភាក្សា"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Lead"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "ក្រុមលក់"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,117 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Sarah Park, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Sarah Park, 2023\n"
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s 의 신규 영업제안"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "챗봇 스크립트"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "챗봇 스크립트 단계"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "영업제안 생성"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "새로운 영업제안 생성(/영업제안 영업제안명)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "새로운 영업제안을 생성하였습니다: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "메일 및 채팅 채널"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "생성된 영업제안 수"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "환영합니다, 오늘 저희 웹사이트에서 무엇을 도와드릴까요? 👋 "
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "죄송합니다, 지금은 모든 상담사가 상담 중입니다 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "영업제안 생성 봇"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "영업제안"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "영업팀"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "단계 유형"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "감사합니다, 최대한 빠른 시간 내 연락드리겠습니다!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr "설정한 팀에 생성된 영업제안/영업기회를 자동 배정하기 위해 'create_lead' 단계 유형과 조합하여 사용합니다."
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "이메일 주소를 남겨주시면 확인 후 바로 연락드리겠습니다."

View file

@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~12.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-12 11:32+0000\n"
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:12
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:39
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:utm.source,name:crm_livechat.utm_source_livechat
msgid "Livechat"
msgstr ""

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lo\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "ຍອດຂາຍ"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "ທິມງານຂາຍ"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,118 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Jonas Zinkevicius <jozi@odoo.com>, 2022
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2022
# Andrius Laukavičius <andrius@focusate.eu>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Andrius Laukavičius <andrius@focusate.eu>, 2022\n"
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lt\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Sukurkite naują iniciatyvą (/iniciatyva jos pavadinimas)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskusijų kanalas"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Iniciatyvos"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Pardavimų komanda"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,120 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Arnis Putniņš <arnis@allegro.lv>, 2022
# ievaputnina <ievai.putninai@gmail.com>, 2023
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskusiju kanāls"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Pavedieni"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Sales Team"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Vai Jūs vēlties atstāt Jūsu e-pasta adresi, lai mēs varētu ar Jums "
"sazināties?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Niyas Raphy, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Niyas Raphy, 2023\n"
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ml\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "ചർച്ചാ ചാനൽ"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "ലീഡ്‌സ്"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "സെയിൽസ് ടീം"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,119 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
# Otgonbayar.A <gobi.mn@gmail.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: mn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Шинэ сэжим үүсгэх"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Хөөрөлдөөний суваг"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Сэжим"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Борлуулалтын баг"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Mehjabin Farsana, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Mehjabin Farsana, 2022\n"
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Memimpin"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Pasukan jualan"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,117 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Marius Stedjan <marius@stedjan.com>, 2022
# Martin Trigaux, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Martin Trigaux, 2022\n"
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Opprett en ny lead (/lead lead-tittel)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskusjonskanal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Salgsteam"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ne\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
# Gunther Clauwaert <gclauwae@hotmail.com>, 2022
# Jolien De Paepe, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Jolien De Paepe, 2022\n"
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s's Nieuwe lead"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot-script"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot-scriptstap"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Een lead maken"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Maak een nieuwe lead (/lead lead titel)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Nieuwe lead aangemaakt: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Discussiekanaal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Aantal gegenereerde leads"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hallo, wat brengt je naar onze website vandaag? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, het lijkt erop dat geen van onze operators beschikbaar is"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Leadgeneratiebot"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Verkoopteam"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Staptype"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Dank je, je hoort snel van ons terug!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Gebruikt in combinatie met het staptype 'create_lead' om de gecreëerde "
"lead/verkoopkans automatisch toe te wijzen aan het gedefinieerde team"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Zou je je e-mailadres willen achterlaten zodat we je terug kunnen bereiken?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: no\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Karol Rybak <karolrybak85@gmail.com>, 2022
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
# Maksym <ms@myodoo.pl>, 2023
# Marta Wacławek, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marta Wacławek, 2024\n"
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Nowy lead %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Skrypt czatbota"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Krok skryptu czatbota"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Utwórz lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Utwórz nowy Lead (/lead tytuł leadu)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Utwórz nowy lead: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kanał dyskusyjny"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Ilość wygenerowanych leadów"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Cześć, co Cię dzisiaj sprowadza na naszą stronę? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
"Ojej, wygląda na to, że żaden z naszych operatorów nie jest dostępny 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot do generowania leadów"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leady"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Zespół sprzedaży"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Typ kroku"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Dziękujemy, odezwiemy się do Ciebie wkrótce!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Użyte w połączeniu z typem kroku \"create_lead\", aby automatycznie "
"przypisać utworzony lead/szansę do zdefiniowanego zespołu"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Czy mógłbyś zostawić swój adres e-mail, abyśmy mogli się do Ciebie odezwać?"

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Nuno Silva <nuno.silva@arxi.pt>, 2022
# Martin Trigaux, 2022
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2022
# Marta Marouço, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Marta Marouço, 2024\n"
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Script do Chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de Discussão"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Oh não, parece que nenhum dos nossos operadores está disponível.🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Prospectos"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Equipa de Vendas"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipo de etapa"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Gostaria de deixar seu e-mail para que possamos entrar em contato consigo "
"mais tarde?"

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Kevilyn Rosa, 2023
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Novo lead de %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Script do chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Etapa do script do chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Criar lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Criar um novo lead (/lead lead title)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Novo lead criado: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal de discussão"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Contagem de leads gerados"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Olá, o que o trouxe até nosso site hoje?👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, parece que nenhum de nossos operadores está disponível.🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot de geração de leads"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Leads"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Equipe de vendas"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tipo de etapa"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Obrigado, em breve teremos uma resposta!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Usado em combinação com o tipo de etapa \"criar_lead\" para atribuir "
"automaticamente o lead/oportunidade criado à equipe definida"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Gostaria de deixar seu endereço de e-mail para que possamos entrar em "
"contato com você?"

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Foldi Robert <foldirobert@nexterp.ro>, 2022
# Cozmin Candea <office@terrabit.ro>, 2023
# Claudia Baisan, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Claudia Baisan, 2023\n"
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Noua pistă al lui %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Script Chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Pas Script Chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Crează Pistă"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Crează o nouă pistă (/lead titlu pistă)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "A creat o nouă pistă: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Canal Discuții"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Număr pistă generată"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Salut, ce te aduce pe site-ul nostru astăzi? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, pare că niciunul dintre operatorii noștri nu este disponibil 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot Generare Pistă"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Piste"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Echipa de vânzări"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Tip pas"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Mulțumesc, vei primi un răspuns în curând!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Utilizat în combinație cu tipul de pas 'create_lead' pentru a atribui "
"automat pistă/oportunitatea creată echipei definite"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "Te deranjează să-ți lăsăm adresa de email pentru a te putea contacta?"

View file

@ -0,0 +1,124 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# ILMIR <karamov@it-projects.info>, 2022
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
# Максим Дронь <dronmax@gmail.com>, 2022
# alenafairy, 2023
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Wil Odoo, 2024\n"
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Новый лид %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Скрипт чатбота"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Шаг сценария чатбота"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Создать Лида"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Создать новый лид (/lead название лида)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Создан новый лид: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Канал обсуждения"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Количество сгенерированных лидов"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Привет, что привело вас на наш сайт сегодня? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Ху-хо, похоже, никто из наших операторов не доступен 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Бот для генерации лида"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Лиды"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Команда продаж"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Тип этапа"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Спасибо, мы ответим вам очень скоро!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Используется в сочетании с типом шага 'create_lead' для автоматического "
"назначения созданного лида/возможности определенной команде"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Не могли бы вы оставить свой адрес электронной почты, чтобы мы могли "
"связаться с вами?"

View file

@ -0,0 +1,119 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Tomáš Píšek, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tomáš Píšek, 2025\n"
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
"Vytvorenie novej Potenciálnej príležitosti (/názov potenciálnej "
"príležitosti)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskusný kanál"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Potenciálna príležitosť"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Obchodný tím"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Typ kroku"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# jl2035 <jaka.luthar@gmail.com>, 2022
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
# Aleš Pipan, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Aleš Pipan, 2025\n"
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%sNova potencialna stranka"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Skript klepetalnega robota"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Korak skripta klepetalnega robota"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Ustvari potencialno stranko"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Ustvari novo potencialno stranko (/lead naslov potencialne stranke)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Ustvarjena nova potencialna stranka: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kanal za razprave"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Število ustvarjenih potencialnih strank"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Živjo, kaj vas je danes pripeljalo na našo spletno stran? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, zdi se, da noben od naših operaterjev ni na voljo. 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot za generiranje potencialnih strank"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Indici"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Prodajna ekipa"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Vrsta koraka"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Hvala, kmalu se vam bomo oglasili!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Uporablja se v kombinaciji s tipom koraka 'create_lead' za samodejno "
"dodelitev ustvarjene potencialne stranke/priložnosti definirani ekipi."
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Bi lahko prosim pustili svoj e-poštni naslov, da vas lahko kontaktiramo?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,120 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022\n"
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s's Novi lid"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot skripta"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Korak skripte za Chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Kreiraj lid"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Kreiraj novi lid (/lead naziv lida)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Kreirao/la je novi lid: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kanal diskusije"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Brojač generisanih lidova"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Zdravo, šta vas dovodi na naš website danas? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Uh-uh, izgleda da nijedan od naših operatera nije dostupan 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot za generisanje lidova"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Lidovi"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Prodajni tim"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Vrsta koraka"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Hvala vam, uskoro ćemo vam se javiti!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Koristi se u kombinaciji sa vrstaom koraka 'create_lead' da bi se automatski"
" kreirani lidovi/prodajne prilike dodelili definisanom timu"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Da li biste želeli da ostavite svoju email adresu kako bismo mogli da vas "
"kontaktiramo?"

View file

@ -0,0 +1,35 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.saas~18\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-09-20 09:53+0000\n"
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:11
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#: code:addons/crm_livechat/models/mail_channel.py:36
#, python-format
msgid ""
"Created a new lead: <a href=\"#\" data-oe-id=\"%s\" data-oe-"
"model=\"crm.lead\">%s</a>"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion channel"
msgstr ""

View file

@ -0,0 +1,119 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
# Lasse L, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Lasse L, 2024\n"
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s:s nya affärsmöjligheter"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot Script"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Steg för skript för chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Skapa kundämne"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Skapa en nytt kundämne (/kundämne kundämnestitel)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Skapade ett nytt kundämne: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Diskussionskanal"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Genererat antal potentiella kunder"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Hej, vad tar dig till vår hemsida idag? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, det verkar som att ingen av våra operatörer är tillgängliga 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Lead Generation Bot"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Kundämnen"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Säljlag"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Stegtyp"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Tack, du bör höra från oss mycket snart!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Används i kombination med 'create_lead' stegtyp för att automatiskt tilldela"
" den skapade kundämnet/möjligheten till det definierade laget"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "Skulle du vilja lämna din e-postadress så att vi kan nå dig tillbaka?"

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: sw\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,112 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr ""
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr ""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr ""
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr ""
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr ""
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""

View file

@ -0,0 +1,120 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Wichanon Jamwutthipreecha, 2022
# Martin Trigaux, 2022
# Rasareeyar Lappiam, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Rasareeyar Lappiam, 2023\n"
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "ลูกค้าเป้าหมายใหม่ของ %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "สคริปต์แชทบอท"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "ขั้นตอนสคริปต์แชทบอท"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "สร้างลูกค้าเป้าหมาย"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "สร้างลูกค้าเป้าหมายใหม่ (/ชื่อลูกค้าเป้าหมาย)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "สร้างลูกค้าเป้าหมายใหม่: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "ช่องการสนทนา"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "จำนวนการสร้างลูกค้าเป้าหมาย"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "สวัสดี มีอะไรให้เราช่วยเหลือบ้าง? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "ดูเหมือนว่าไม่มีโอเปอเรเตอร์ของเราคนไหนว่างขณะนี้เลย 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "บอทสร้างลูกค้าเป้าหมาย"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "ลูกค้าเป้าหมาย"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "ทีมขาย"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "ประเภทขั้นตอน"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "ขอบคุณ คุณจะได้รับการติดต่อกลับจากเราเร็วๆนี้!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"ใช้ร่วมกับประเภทขั้นตอน 'create_lead' "
"เพื่อมอบหมายลูกค้าเป้าหมาย/โอกาสที่สร้างขึ้นให้กับทีมที่กำหนดโดยอัตโนมัติ"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "คุณช่วยให้ที่อยู่อีเมลของคุณไว้เพื่อให้เราติดต่อกลับได้ไหม?"

View file

@ -0,0 +1,123 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Halil, 2022
# Ediz Duman <neps1192@gmail.com>, 2022
# Tugay Hatıl <tugayh@projetgrup.com>, 2022
# Murat Kaplan <muratk@projetgrup.com>, 2022
# İlknur Gözütok, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: İlknur Gözütok, 2023\n"
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s'in Yeni Lideri"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Chatbot Komut Dosyası"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Chatbot Komut Dosyası Adımı"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Müşteri Adayı Oluştur"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Bir yeni aday oluştur (/aday başlığı)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Yeni bir müşteri adayı oluşturuldu: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Mesajlaşma Kanalı"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Oluşturulan Müşteri Adayı Sayısı"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Merhaba, sizi bugün web sitemize getiren nedir? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Hu-ho, operatörlerimizin hiçbiri müsait değil gibi görünüyor 🙁 "
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Müşteri Adayı Oluşturma Botu"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Adaylar"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Satış Ekibi"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Adım Türü"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Teşekkür ederim, çok yakında bizden haber almalısınız!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Oluşturulan müşteri adayını/fırsatı tanımlanan ekibe otomatik olarak atamak "
"için 'create_lead' adım türüyle birlikte kullanılır"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Size geri ulaşabilmemiz için e-posta adresinizi bırakmayı düşünür müsünüz?"

View file

@ -0,0 +1,121 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\n"
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: uk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s Нових лідів"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Скрипт чатботу"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Крок скрипта чатботу"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Створити лід"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Створіть новий лід (/заголовок ліду)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Стоврено новий лід: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Канал обговорення"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Підрахунок створених лідів"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "Привіт, що принесло вас сьогодні на наш сайт? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Ого, здається усі наші оператори зараз зайняті 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Бот створення лідів"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Ліди"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Команда продажу"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Тип кроку"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Дякуємо, скоро почуємося!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Використовується в поєднанні з типом кроку 'create_lead', щоб автоматично "
"призначити створеного ліда/нагоду визначеній команді"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Ви б не були проти залишити вашу електронну адресу, щоб ми зв'язалися з "
"вами?"

View file

@ -0,0 +1,122 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Thi Huong Nguyen, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Thi Huong Nguyen, 2025\n"
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "Lead mới của %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "Kịch bản chatbot"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "Bước kịch bản chatbot"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "Tạo lead"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "Tạo lead mới (/tiêu đề lead)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "Tạo lead mới: %s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "Kênh thảo luận"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "Số lead đã tạo"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr ""
"Xin chào! Cơn gió nào đã đưa bạn đến với trang web của chúng tôi hôm nay? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "Ultr! Có vẻ như tất cả tổng đài viên của chúng tôi đều đang bận. 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "Bot tạo lead"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "Lead"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "Đội ngũ kinh doanh"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "Loại bước"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "Xin cảm ơn! Chúng tôi sẽ sớm phản hồi bạn!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr ""
"Được sử dụng kết hợp với loại bước 'create_lead' để tự động phân công "
"lead/cơ hội đã tạo cho đội ngũ đã xác định"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr ""
"Bạn có vui lòng cung cấp địa chỉ email để chúng tôi có thể liên hệ lại với "
"bạn không?"

View file

@ -0,0 +1,118 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# 稀饭~~ <wangwhai@qq.com>, 2022
# Jeffery CHEN <jeffery9@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Jeffery CHEN <jeffery9@gmail.com>, 2022\n"
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s 的新线索"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "聊天机器人脚本"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "聊天机器人脚本步骤"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "创建线索"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "创建新线索(/主要负责人头衔)"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "已创建新潜在顾客:%s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "讨论频道"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "生成的线索计数"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "嗨,今天是什么让您来到我们的网站? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "胡呵,看起来我们的运营商都不可用 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "线索生成机器人"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "线索"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "销售团队"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "步骤类型"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "谢谢,您应该很快收到我们的回复!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr "与'create_lead'步骤类型结合使用,以便自动将创建的线索/商机分配给定义的团队"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "您是否介意留下您的电子邮件地址,以便我们可以与您联系?"

View file

@ -0,0 +1,117 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * crm_livechat
#
# Translators:
# Martin Trigaux, 2022
# Tony Ng, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
"Last-Translator: Tony Ng, 2023\n"
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/chatbot_script_step.py:0
#, python-format
msgid "%s's New Lead"
msgstr "%s 的新潛在商機"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script
msgid "Chatbot Script"
msgstr "聊天機器人程式碼"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_chatbot_script_step
msgid "Chatbot Script Step"
msgstr "聊天機器人程式碼步驟"
#. module: crm_livechat
#: model:ir.model.fields.selection,name:crm_livechat.selection__chatbot_script_step__step_type__create_lead
msgid "Create Lead"
msgstr "建立潛在客戶"
#. module: crm_livechat
#. odoo-javascript
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#: code:addons/crm_livechat/static/src/models/messaging_initializer.js:0
#, python-format
msgid "Create a new lead (/lead lead title)"
msgstr "建立新潛在商機(輸入\"/lead 潛在商機指令\""
#. module: crm_livechat
#. odoo-python
#: code:addons/crm_livechat/models/mail_channel.py:0
#, python-format
msgid "Created a new lead: %s"
msgstr "已建立新的潛在客戶:%s"
#. module: crm_livechat
#: model:ir.model,name:crm_livechat.model_mail_channel
msgid "Discussion Channel"
msgstr "討論群組"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script__lead_count
msgid "Generated Lead Count"
msgstr "已產生潛在客戶數目"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_welcome
msgid "Hi there, what brings you to our website today? 👋"
msgstr "你好,今天是甚麼原因到訪我們網站? 👋"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_lead_generation_step_noone_available
msgid "Hu-ho, it looks like none of our operators are available 🙁"
msgstr "哎唷,目前似乎沒有服務員有空 🙁"
#. module: crm_livechat
#: model:chatbot.script,title:crm_livechat.chatbot_script_lead_generation_bot
msgid "Lead Generation Bot"
msgstr "潛在客戶生成機器人"
#. module: crm_livechat
#: model_terms:ir.ui.view,arch_db:crm_livechat.chatbot_script_view_form
msgid "Leads"
msgstr "潛在商機"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__crm_team_id
msgid "Sales Team"
msgstr "銷售團隊"
#. module: crm_livechat
#: model:ir.model.fields,field_description:crm_livechat.field_chatbot_script_step__step_type
msgid "Step Type"
msgstr "步驟類型"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_just_looking
msgid "Thank you, you should hear back from us very soon!"
msgstr "謝謝你,你應該很快會收到我們回覆!"
#. module: crm_livechat
#: model:ir.model.fields,help:crm_livechat.field_chatbot_script_step__crm_team_id
msgid ""
"Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team"
msgstr "與 create_lead 步驟類型結合使用,以將已建立的潛在客戶/銷售機會自動指派給指定的團隊"
#. module: crm_livechat
#: model:chatbot.script.step,message:crm_livechat.chatbot_script_welcome_step_pricing_email
msgid ""
"Would you mind leaving your email address so that we can reach you back?"
msgstr "介意留下你的電郵地址,以便我們回覆你嗎?"

View file

@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import chatbot_script
from . import chatbot_script_step
from . import mail_channel

View file

@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
class ChatbotScript(models.Model):
_inherit = 'chatbot.script'
lead_count = fields.Integer(
string='Generated Lead Count', compute='_compute_lead_count')
def _compute_lead_count(self):
mapped_leads = {}
if self.ids:
leads_data = self.env['crm.lead'].with_context(active_test=False).sudo()._read_group(
[('source_id', 'in', self.mapped('source_id').ids)], ['source_id'], ['source_id'])
mapped_leads = {lead['source_id'][0]: lead['source_id_count'] for lead in leads_data}
for script in self:
script.lead_count = mapped_leads.get(script.source_id.id, 0)
def action_view_leads(self):
self.ensure_one()
action = self.env['ir.actions.act_window']._for_xml_id('crm.crm_lead_all_leads')
action['domain'] = [('source_id', '=', self.source_id.id)]
action['context'] = {'create': False}
return action

View file

@ -0,0 +1,65 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import _, models, fields
class ChatbotScriptStep(models.Model):
_inherit = 'chatbot.script.step'
step_type = fields.Selection(
selection_add=[('create_lead', 'Create Lead')], ondelete={'create_lead': 'cascade'})
crm_team_id = fields.Many2one(
'crm.team', string='Sales Team', ondelete='set null',
help="Used in combination with 'create_lead' step type in order to automatically "
"assign the created lead/opportunity to the defined team")
def _chatbot_crm_prepare_lead_values(self, mail_channel, description):
return {
'description': description + mail_channel._get_channel_history(),
'name': _("%s's New Lead", self.chatbot_script_id.title),
'source_id': self.chatbot_script_id.source_id.id,
'team_id': self.crm_team_id.id,
'type': 'lead' if self.crm_team_id.use_leads else 'opportunity',
'user_id': False,
}
def _process_step(self, mail_channel):
self.ensure_one()
posted_message = super()._process_step(mail_channel)
if self.step_type == 'create_lead':
self._process_step_create_lead(mail_channel)
return posted_message
def _process_step_create_lead(self, mail_channel):
""" When reaching a 'create_lead' step, we extract the relevant information: visitor's
email, phone and conversation history to create a crm.lead.
We use the email and phone to update the environment partner's information (if not a public
user) if they differ from the current values.
The whole conversation history will be saved into the lead's description for reference.
This also allows having a question of type 'free_input_multi' to let the visitor explain
their interest / needs before creating the lead. """
customer_values = self._chatbot_prepare_customer_values(
mail_channel, create_partner=False, update_partner=True)
if self.env.user._is_public():
create_values = {
'email_from': customer_values['email'],
'phone': customer_values['phone'],
}
else:
partner = self.env.user.partner_id
create_values = {
'partner_id': partner.id,
'company_id': partner.company_id.id,
}
create_values.update(self._chatbot_crm_prepare_lead_values(
mail_channel, customer_values['description']))
self.env['crm.lead'].create(create_values)

View file

@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, _
from odoo.tools import html2plaintext
class MailChannel(models.Model):
_inherit = 'mail.channel'
def execute_command_lead(self, **kwargs):
partner = self.env.user.partner_id
key = kwargs['body']
if key.strip() == '/lead':
msg = _('Create a new lead (/lead lead title)')
else:
lead = self._convert_visitor_to_lead(partner, key)
msg = _(
'Created a new lead: %s',
lead._get_html_link(),
)
self._send_transient_message(partner, msg)
def _convert_visitor_to_lead(self, partner, key):
""" Create a lead from channel /lead command
:param partner: internal user partner (operator) that created the lead;
:param key: operator input in chat ('/lead Lead about Product')
"""
# if public user is part of the chat: consider lead to be linked to an
# anonymous user whatever the participants. Otherwise keep only share
# partners (no user or portal user) to link to the lead.
customers = self.env['res.partner']
for customer in self.with_context(active_test=False).channel_partner_ids.filtered(lambda p: p != partner and p.partner_share):
if customer.is_public:
customers = self.env['res.partner']
break
else:
customers |= customer
utm_source = self.env.ref('crm_livechat.utm_source_livechat', raise_if_not_found=False)
return self.env['crm.lead'].create({
'name': html2plaintext(key[5:]),
'partner_id': customers[0].id if customers else False,
'user_id': False,
'team_id': False,
'description': self._get_channel_history(),
'referred': partner.name,
'source_id': utm_source and utm_source.id,
})

View file

@ -0,0 +1,23 @@
/** @odoo-module **/
import { registerPatch } from '@mail/model/model_core';
import { insert } from '@mail/model/model_field_command';
registerPatch({
name: 'MessagingInitializer',
recordMethods: {
/**
* @override
*/
_initCommands() {
this._super();
this.messaging.update({
commands: insert({
help: this.env._t("Create a new lead (/lead lead title)"),
methodName: 'execute_command_lead',
name: "lead",
}),
});
},
},
});

View file

@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import chatbot_common
from . import test_chatbot_lead
from . import test_crm_lead

View file

@ -0,0 +1,66 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.im_livechat.tests.chatbot_common import ChatbotCase
from odoo.addons.mail.tests.common import mail_new_test_user
class CrmChatbotCase(ChatbotCase):
@classmethod
def setUpClass(cls):
super(CrmChatbotCase, cls).setUpClass()
cls.company_id = cls.env['res.company'].create({
'name': 'Test Company',
'country_id': cls.env.ref('base.be').id,
})
cls.user_public = mail_new_test_user(
cls.env, login='user_public', groups='base.group_public', name='Public User')
cls.user_portal = mail_new_test_user(
cls.env, login='user_portal', groups='base.group_portal', name='Portal User',
company_id=cls.company_id.id, email='portal@example.com')
# update company_id on partner since the user's company is not propagated
cls.user_portal.partner_id.write({'company_id': cls.company_id.id})
cls.sale_team = cls.env['crm.team'].create({
'name': 'Test Sale Team 1',
'company_id': cls.company_id.id,
})
cls.sale_team_with_lead = cls.env['crm.team'].create({
'name': 'Test Sale Team 2',
'use_leads': True,
'company_id': cls.company_id.id,
})
cls.step_dispatch_create_lead = cls.env['chatbot.script.answer'].sudo().create({
'name': 'Create a lead',
'script_step_id': cls.step_dispatch.id,
})
[
cls.step_create_lead_email,
cls.step_create_lead_phone,
cls.step_create_lead,
] = cls.env['chatbot.script.step'].sudo().create([{
'step_type': 'question_email',
'message': 'Could you provide us your email please.',
'sequence': 20,
'triggering_answer_ids': [(4, cls.step_dispatch_create_lead.id)],
'chatbot_script_id': cls.chatbot_script.id,
}, {
'step_type': 'question_phone',
'message': 'Could you also provide your phone please.',
'sequence': 21,
'triggering_answer_ids': [(4, cls.step_dispatch_create_lead.id)],
'chatbot_script_id': cls.chatbot_script.id,
}, {
'step_type': 'create_lead',
'message': 'Thank you! A lead has been created.',
'sequence': 22,
'triggering_answer_ids': [(4, cls.step_dispatch_create_lead.id)],
'crm_team_id': cls.sale_team.id,
'chatbot_script_id': cls.chatbot_script.id,
}])

View file

@ -0,0 +1,51 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.crm_livechat.tests import chatbot_common
from odoo.tests.common import users
class CrmChatbotCase(chatbot_common.CrmChatbotCase):
@users('user_public')
def test_chatbot_lead_public_user(self):
self._chatbot_create_lead(self.user_public)
created_lead = self.env['crm.lead'].sudo().search([], limit=1, order='id desc')
self.assertEqual(created_lead.name, "Testing Bot's New Lead")
self.assertEqual(created_lead.email_from, 'test2@example.com')
self.assertEqual(created_lead.phone, '123456')
self.assertEqual(created_lead.team_id, self.sale_team)
self.assertEqual(created_lead.type, 'opportunity')
@users('user_portal')
def test_chatbot_lead_portal_user(self):
self.step_create_lead.write({'crm_team_id': self.sale_team_with_lead})
self._chatbot_create_lead(self.user_portal)
created_lead = self.env['crm.lead'].sudo().search([], limit=1, order='id desc')
self.assertEqual(created_lead.name, "Testing Bot's New Lead")
self.assertNotEqual(created_lead.email_from, 'test2@example.com', "User's email should'nt have been overridden")
self.assertEqual(created_lead.phone, '123456', "User's phone should have been updated")
self.assertEqual(created_lead.team_id, self.sale_team_with_lead)
self.assertEqual(created_lead.type, 'lead')
def _chatbot_create_lead(self, user):
channel_info = self.livechat_channel._open_livechat_mail_channel(
anonymous_name='Test Visitor', chatbot_script=self.chatbot_script, user_id=user.id)
mail_channel = self.env['mail.channel'].sudo().browse(channel_info['id'])
self._post_answer_and_trigger_next_step(
mail_channel,
self.step_dispatch_create_lead.name,
chatbot_script_answer=self.step_dispatch_create_lead
)
self.assertEqual(mail_channel.chatbot_current_step_id, self.step_create_lead_email)
self._post_answer_and_trigger_next_step(mail_channel, 'test2@example.com')
self.assertEqual(mail_channel.chatbot_current_step_id, self.step_create_lead_phone)
self._post_answer_and_trigger_next_step(mail_channel, '123456')
self.assertEqual(mail_channel.chatbot_current_step_id, self.step_create_lead)

View file

@ -0,0 +1,94 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.crm.tests.common import TestCrmCommon
from odoo.addons.mail.tests.common import mail_new_test_user
from odoo.tests.common import users
class TestLivechatLead(TestCrmCommon):
@classmethod
def setUpClass(cls):
super(TestLivechatLead, cls).setUpClass()
cls.user_anonymous = mail_new_test_user(
cls.env, login='user_anonymous',
name='Anonymous Website', email=False,
company_id=cls.company_main.id,
notification_type='email',
groups='base.group_public',
)
cls.user_portal = mail_new_test_user(
cls.env, login='user_portal',
name='Paulette Portal', email='user_portal@test.example.com',
company_id=cls.company_main.id,
notification_type='email',
groups='base.group_portal',
)
@users('user_sales_leads')
def test_crm_lead_creation_guest(self):
""" Test customer set on lead: not if public, guest if not public """
# public: should not be set as customer
channel = self.env['mail.channel'].create({
'name': 'Chat with Visitor',
'channel_partner_ids': [(4, self.user_anonymous.partner_id.id)]
})
lead = channel._convert_visitor_to_lead(self.env.user.partner_id, '/lead TestLead command')
self.assertEqual(
channel.channel_partner_ids,
self.user_sales_leads.partner_id | self.user_anonymous.partner_id
)
self.assertEqual(lead.name, 'TestLead command')
self.assertEqual(lead.partner_id, self.env['res.partner'])
# public user: should not be set as customer
# 'base.public_user' is archived by default
self.assertFalse(self.env.ref('base.public_user').active)
channel = self.env['mail.channel'].create({
'name': 'Chat with Visitor',
'channel_partner_ids': [(4, self.env.ref('base.public_partner').id)]
})
lead = channel._convert_visitor_to_lead(self.env.user.partner_id, '/lead TestLead command')
self.assertEqual(
channel.channel_member_ids.partner_id,
self.user_sales_leads.partner_id | self.env.ref('base.public_partner')
)
self.assertEqual(lead.name, 'TestLead command')
self.assertEqual(lead.partner_id, self.env['res.partner'])
# public + someone else: no customer (as they were anonymous)
channel.write({
'channel_partner_ids': [(4, self.user_sales_manager.partner_id.id)]
})
lead = channel._convert_visitor_to_lead(self.env.user.partner_id, '/lead TestLead command')
self.assertEqual(lead.partner_id, self.env['res.partner'])
# portal: should be set as customer
channel = self.env['mail.channel'].create({
'name': 'Chat with Visitor',
'channel_partner_ids': [(4, self.user_portal.partner_id.id)]
})
lead = channel._convert_visitor_to_lead(self.env.user.partner_id, '/lead TestLead command')
self.assertEqual(
channel.channel_partner_ids,
self.user_sales_leads.partner_id | self.user_portal.partner_id
)
self.assertEqual(lead.partner_id, self.user_portal.partner_id)
# another operator invited: internal user should not be customer if portal is present
channel.write({
'channel_partner_ids': [(4, self.user_sales_manager.partner_id.id)]
})
lead = channel._convert_visitor_to_lead(self.env.user.partner_id, '/lead TestLead command')
self.assertEqual(
channel.channel_partner_ids,
self.user_sales_leads.partner_id | self.user_portal.partner_id | self.user_sales_manager.partner_id
)
self.assertEqual(lead.partner_id, self.user_portal.partner_id)

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data>
<record id="chatbot_script_step_view_form" model="ir.ui.view">
<field name="name">chatbot.script.step.view.form.inherit.crm.livechat</field>
<field name="model">chatbot.script.step</field>
<field name="inherit_id" ref="im_livechat.chatbot_script_step_view_form"/>
<field name="arch" type="xml">
<field name="step_type" position="after">
<field name="crm_team_id" attrs="{'invisible': [('step_type', '!=', 'create_lead')]}"
options="{'no_open': True}"/>
</field>
</field>
</record>
</data></odoo>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data>
<record id="chatbot_script_view_form" model="ir.ui.view">
<field name="name">chatbot.script.view.form.inherit.crm.livechat</field>
<field name="model">chatbot.script</field>
<field name="inherit_id" ref="im_livechat.chatbot_script_view_form"/>
<field name="arch" type="xml">
<div name="button_box" position="inside">
<button name="action_view_leads" type="object" class="oe_stat_button"
icon="fa-star" attrs="{'invisible': [('lead_count', '=', 0)]}">
<field string="Leads" name="lead_count" widget="statinfo" />
</button>
</div>
</field>
</record>
</data></odoo>

View file

@ -0,0 +1,32 @@
# Architecture
```mermaid
flowchart TD
U[Users] -->|HTTP| V[Views and QWeb Templates]
V --> C[Controllers]
V --> W[Wizards Transient Models]
C --> M[Models and ORM]
W --> M
M --> R[Reports]
DX[Data XML] --> M
S[Security ACLs and Groups] -. enforces .-> M
subgraph Crm_livechat Module - crm_livechat
direction LR
M:::layer
W:::layer
C:::layer
V:::layer
R:::layer
S:::layer
DX:::layer
end
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
```
Notes
- Views include tree/form/kanban templates and report templates.
- Controllers provide website/portal routes when present.
- Wizards are UI flows implemented with `models.TransientModel`.
- Data XML loads data/demo records; Security defines groups and access.

View file

@ -0,0 +1,3 @@
# Configuration
Refer to Odoo settings for crm_livechat. Configure related models, access rights, and options as needed.

View file

@ -0,0 +1,3 @@
# Controllers
This module does not define custom HTTP controllers.

View file

@ -0,0 +1,6 @@
# Dependencies
This addon depends on:
- [crm](../../odoo-bringout-oca-ocb-crm)
- [im_livechat](../../odoo-bringout-oca-ocb-im_livechat)

View file

@ -0,0 +1,4 @@
# FAQ
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
- Q: How to enable? A: Start server with --addon crm_livechat or install in UI.

View file

@ -0,0 +1,7 @@
# Install
```bash
pip install odoo-bringout-oca-ocb-crm_livechat"
# or
uv pip install odoo-bringout-oca-ocb-crm_livechat"
```

Some files were not shown because too many files have changed in this diff Show more