diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/mail_bot | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/mail_bot')
76 files changed, 16894 insertions, 0 deletions
diff --git a/addons/mail_bot/__init__.py b/addons/mail_bot/__init__.py new file mode 100644 index 00000000..dc5e6b69 --- /dev/null +++ b/addons/mail_bot/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/addons/mail_bot/__manifest__.py b/addons/mail_bot/__manifest__.py new file mode 100644 index 00000000..35deed98 --- /dev/null +++ b/addons/mail_bot/__manifest__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'OdooBot', + 'version': '1.2', + 'category': 'Productivity/Discuss', + 'summary': 'Add OdooBot in discussions', + 'description': "", + 'website': 'https://www.odoo.com/page/discuss', + 'depends': ['mail'], + 'auto_install': True, + 'installable': True, + 'application': False, + 'data': [ + 'views/assets.xml', + 'views/res_users_views.xml', + 'data/mailbot_data.xml', + ], + 'demo': [ + 'data/mailbot_demo.xml', + ], + 'qweb': [ + 'static/src/bugfix/bugfix.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/mail_bot/data/mailbot_data.xml b/addons/mail_bot/data/mailbot_data.xml new file mode 100644 index 00000000..439a7e29 --- /dev/null +++ b/addons/mail_bot/data/mailbot_data.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <record id="base.user_root" model="res.users"> + <field name="odoobot_state">disabled</field> + </record> + </data> +</odoo> diff --git a/addons/mail_bot/data/mailbot_demo.xml b/addons/mail_bot/data/mailbot_demo.xml new file mode 100644 index 00000000..cbc11715 --- /dev/null +++ b/addons/mail_bot/data/mailbot_demo.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <!-- Disable odoobot on admin so that devs don't hate him --> + <record id="base.user_admin" model="res.users"> + <field name="odoobot_state">disabled</field> + </record> + </data> +</odoo> diff --git a/addons/mail_bot/i18n/ar.po b/addons/mail_bot/i18n/ar.po new file mode 100644 index 00000000..fd1713e3 --- /dev/null +++ b/addons/mail_bot/i18n/ar.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"رباه! هذا لطيف جدًا، لكن، كما تعرف، لا يمكن لذكاء اصطناعي أن يفعل هذا. أنت " +"بشري أكثر من اللازم! فلنبقي علاقتنا مهنية ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "معطل" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "قناة المناقشة" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "المحادثة البريدية" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "مسار HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "هممم..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "أخشى أنني لا أفهمك. آسف!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "المُعرف" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "خامل" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mail Bot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "لم تتم تهيئته" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "حالة OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "مرفق الترحيب" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "أمر الترحيب" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "إيموجي الترحيب" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "مناداة الترحيب" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "هذا ليس لطيفًا! أنا بوت لكنني أملك مشاعر... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "لنبدأ، جرب أن ترسل لي إيموجي :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "المستخدمون" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "اللعنة" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "المساعدة" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "أنا أحبك" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "حب" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "بدء الجولة" diff --git a/addons/mail_bot/i18n/az.po b/addons/mail_bot/i18n/az.po new file mode 100644 index 00000000..b0bfaa63 --- /dev/null +++ b/addons/mail_bot/i18n/az.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:05+0000\n" +"PO-Revision-Date: 2018-08-24 09:20+0000\n" +"Language-Team: Azerbaijani (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:57 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:42 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:42 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:38 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:74 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:75 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:59 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:73 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:45 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:65 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:69 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:64 +#, python-format +msgid "" +"Odoo has now the permission to send you native notifications on this device." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:61 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:39 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding canned" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:60 +#, python-format +msgid "Permission denied" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:71 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:61 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:67 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:54 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:48 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:63 +#, python-format +msgid "Yay, push notifications are enabled!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:51 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:60 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:58 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:52 +#: code:addons/mail_bot/models/mail_bot.py:73 +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/bg.po b/addons/mail_bot/i18n/bg.po new file mode 100644 index 00000000..92b310be --- /dev/null +++ b/addons/mail_bot/i18n/bg.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# aleksandar ivanov, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# Ивайло Малинов <iv.malinov@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Ивайло Малинов <iv.malinov@gmail.com>, 2021\n" +"Language-Team: Bulgarian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Дискусионен канал" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Имейл поредица" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Празен" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Потребители" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/bn.po b/addons/mail_bot/i18n/bn.po new file mode 100644 index 00000000..8521f09a --- /dev/null +++ b/addons/mail_bot/i18n/bn.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "নিষ্ক্রিয়" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "আলোচনা চ্যানেল" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "এইচটিটিপি রাউটিং" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "আইডি " + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "মেইল বট" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "ওড়ো বট অবস্থান" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "ব্যবহারকারীরা" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/bs.po b/addons/mail_bot/i18n/bs.po new file mode 100644 index 00000000..d4ac77ae --- /dev/null +++ b/addons/mail_bot/i18n/bs.po @@ -0,0 +1,328 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +# Bole <bole@dajmi5.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:05+0000\n" +"PO-Revision-Date: 2018-10-02 10:05+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:57 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion channel" +msgstr "Kanal rasprave" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Nit e-pošte" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:42 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:42 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:38 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:74 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:75 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:59 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:73 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Idle" +msgstr "Na čekanju" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:45 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:65 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:69 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:64 +#, python-format +msgid "" +"Odoo has now the permission to send you native notifications on this device." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:61 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:39 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding canned" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:60 +#, python-format +msgid "Permission denied" +msgstr "Pristup odbijen" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:71 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:61 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:67 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:54 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:48 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:63 +#, python-format +msgid "Yay, push notifications are enabled!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:51 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:60 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:58 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:52 +#: code:addons/mail_bot/models/mail_bot.py:73 +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/ca.po b/addons/mail_bot/i18n/ca.po new file mode 100644 index 00000000..0037fe6e --- /dev/null +++ b/addons/mail_bot/i18n/ca.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Arnau Ros, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Això sí, és molt maco, però, els robots no funcionen així. Ets massa humà " +"per a mi! Mantenim-ho professional ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Inhabilitat " + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de debat" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Notificacions del sistema" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Enrutament HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Em temo que no ho entenc. Ho sento!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Ociós" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Robot de correu" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "No iniciat" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Estat de l'OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Fitxer adjunt" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Comandament a bord" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Incorporació d'emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Ping d'incorporació" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Això no està bé! Sóc un robot però tinc sentiments... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Per començar, intenta enviar-me un emoji :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Usuaris" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "Joder" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ajuda" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "T'aprecio molt" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "amor" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "Comença el tour" diff --git a/addons/mail_bot/i18n/ckb.po b/addons/mail_bot/i18n/ckb.po new file mode 100644 index 00000000..3fdf5e8e --- /dev/null +++ b/addons/mail_bot/i18n/ckb.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ناسنامە" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "بەکارهێنەرەکان" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/cs.po b/addons/mail_bot/i18n/cs.po new file mode 100644 index 00000000..77621304 --- /dev/null +++ b/addons/mail_bot/i18n/cs.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# trendspotter, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: trendspotter, 2020\n" +"Language-Team: Czech (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw, to je opravdu roztomilé, ale víte, roboti takhle nefungují. Jsi pro " +"mě příliš člověkem! Zůstaňme profesionální ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Zakázáno" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusní kanál" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-mailové vlákno" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Obávám se, že nerozumím. Promiňte!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Nečinný" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "e-mailový robot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Status OdooBota" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "To není pěkné! Jsem sice bot, ale mám pocity ... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Chcete-li začít, zkuste mi poslat smajlíka :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "sakra" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "nápověda" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "mám vás rád" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "líbí" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/da.po b/addons/mail_bot/i18n/da.po new file mode 100644 index 00000000..033dc396 --- /dev/null +++ b/addons/mail_bot/i18n/da.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Nuuurh, det er virkelig sødt men, du ved, bots er ikke sådan. Du er alt for " +"menneskelig til mig! Lad os holde det professionelt ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Deaktiveret" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-mail-tråd" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Super! 👍<br/><b>Start din sætning med</b> <span " +"class=\"o_odoobot_command\">/</span> for at tilgå særlige kommandoer. Prøv " +"at få hjælp." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Hej,<br/>Odoo's chat hjælper medarbejdere med at arbejde effektivt sammen. " +"Jeg er her til at hjælpe dig med at opdage dens funktioner.<br/><b>Prøv at " +"sende mig en emoji</b> <span class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Jeg er blot en bot, men hvis det er en hund, er han den sødeste 😊 " +"<br/>Tillykke, du afsluttede din rundvisning. Du kan nu <b>lukke dette chat " +"vindue</b>. Nyd at opdage Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Jeg er bange for jeg ikke forstår. Undskyld!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Jeg er ikke klog nok til at svare på dit spørgsmål.<br/>For at følge min " +"guide, kan du spørge: <span class=\"o_odoobot_command\">start " +"rundvisningen</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inaktiv" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mail bot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Ikke helt. Send en smiley for at fortsætte rundvisningen: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> og tryk på enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Ikke startet" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Er ikke sikker på hvad du laver. Vær venlig at skrive <span " +"class=\"o_odoobot_command\">/</span> og vent på foreslag. Vælg <span " +"class=\"o_odoobot_command\">hjælp</span> og tryk på enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot slog fejl" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Onboarding vedhæftning" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Onboarding kommando" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Onboarding smiley" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Ondboarding ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Undskyld jeg er søvnig. Eller ikke! Måske prøver jeg blot at skjule min " +"manglende kendskab til menneskelige sprog...<br/>Jeg kan vise dig funktioner" +" hvis du skriver: <span class=\"o_odoobot_command\">start " +"rundvisningen</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Undskyld, jeg hører ikke efter. For at fange nogens opmærksomhed kan du " +"<b>pinge dem</b>. Skriv <span class=\"o_odoobot_command\">@OdooBot</span> og" +" vælg mig." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Det er ikke flinkt! Jeg er en bot, men jeg har følelser... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Klik på <i class=\"fa fa-paperclip\" aria-hidden=\"true\"></i> ikonet og " +"vælg en fil, for at <b>sende en vedhæftelse</b>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "For at begynde, prøv at sende mig en smiley :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Desværre er jeg blot en bot 😞 Jeg forstår det ikke! Hvis du har behov for " +"hjælp med at udforske vores produkter, bedes du venligst tjekke vores <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">dokumentation</a> " +"eller <a href=\"https://www.odoo.com/slides\" target=\"_blank\">videor</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Brugere" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Hold da fast, du er et naturtalent!<br/>Ping nogen med @brugernavn for at " +"fange deres opmærksomhed. <b>Prøv at pinge mig ved at bruge</b> <span " +"class=\"o_odoobot_command\">@OdooBot<span> i en sætning." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Jep, jeg er her! 🎉 <br/>Prøv nu at <b>sende en vedhæftning</b>, så som et " +"billede af din søde hund..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "fuck" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "hjælp" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "jeg elsker dig" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "elsker" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "start rundvisningen" diff --git a/addons/mail_bot/i18n/de.po b/addons/mail_bot/i18n/de.po new file mode 100644 index 00000000..efc68d42 --- /dev/null +++ b/addons/mail_bot/i18n/de.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: German (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Ooooh, das ist wirklich süss, aber Bots funktionieren nicht so. Du bist zu " +"menschlich für mich! Bleiben wir professionell ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Deaktiviert" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-Mail Thread" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Ich habe Angst und verstehe es nicht. Es tut mir leid!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "ungenutzt" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Nicht initialisiert" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Das ist nicht nett! Ich bin ein Bot und habe gefühle...💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Versuche mir zu Beginn ein Emoji zu schicken :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "Scheiße" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "Hilfe" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "Ich liebe Dich" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "Liebe" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "Starte Sie die Tour" diff --git a/addons/mail_bot/i18n/el.po b/addons/mail_bot/i18n/el.po new file mode 100644 index 00000000..72ae964e --- /dev/null +++ b/addons/mail_bot/i18n/el.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" +"Κανάλι συζήτησης\n" +" " + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Νήμα Email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "Κωδικός" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Αδράνεια" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Χρήστες" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/eo.po b/addons/mail_bot/i18n/eo.po new file mode 100644 index 00000000..22d4b1be --- /dev/null +++ b/addons/mail_bot/i18n/eo.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@username. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/es.po b/addons/mail_bot/i18n/es.po new file mode 100644 index 00000000..6e21caca --- /dev/null +++ b/addons/mail_bot/i18n/es.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# VivianMontana23 <vivianpvm@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Spanish (https://www.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=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw eso es muy lindo, pero los robots no funcionan así. ¡Usted es " +"demasiado humano para mí! Mantengámoslo profesional ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Deshabilitado" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Hilo de mensajes" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Me temo que no entiendo. Lo siento!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Ocioso" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Bot de Correo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "No inicializado" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Estado de OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Archivo de Orientación Adjunto" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Mando de orientación" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Emoji de orientación" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Silvido de orientación" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "¡Eso no es agradable! Soy un robot, pero tengo sentimientos... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Para empezar, intenta enviarme un emoji :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "carajo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ayuda" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "te amo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "amor" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "inicia el tour" diff --git a/addons/mail_bot/i18n/es_MX.po b/addons/mail_bot/i18n/es_MX.po new file mode 100644 index 00000000..3a6b93bc --- /dev/null +++ b/addons/mail_bot/i18n/es_MX.po @@ -0,0 +1,322 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Braulio D. López Vázquez <bdl@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.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=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw, ¡qué lindo!, pero los bots no funcionan así. ¡Usted es demasiado " +"humano para mí! Mantengámoslo profesional ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Deshabilitado" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Hilo de correos electrónicos" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"¡Excelentet! 👍<br/>Para iniciar con comandos especiales <b>empiece su " +"oración con</b> <span class=\"o_odoobot_command\">/</span>. Intente pedir " +"ayuda." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Ruta HTTP " + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Hola,<br/>El chat de Odoo ayuda a que los empleados colaboren eficazmente. " +"Estoy aquí para ayudarle a descubrir sus funciones.<br/><b>Intente enviarme " +"un emoji</b> <span class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Solo soy un simple bot, pero si eso es un perro, es lo más bonito que he " +"visto 😊 <br/>Felicidades, ha terminado este recorrido. Puede ahora <b>cerrar" +" esta ventana de chat</b>. Disfrute descubriendo Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Me temo que no entiendo. ¡Lo siento!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"No soy lo suficientemente inteligente para contestar su pregunta.<br/>Para " +"seguir mi guía, diga: <span class=\"o_odoobot_command\">iniciar el " +"recorrido</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inactivo" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Bot de correo electrónico" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"No exactamente. Para continuar con el recorrido, envíe un emoji: " +"<b>escriba</b> <span class=\"o_odoobot_command\">:)</span> y presione enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "No inicializado" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"No estoy seguro de qué está haciendo. Por favor, escriba <span " +"class=\"o_odoobot_command\">/</span> y espere la propuesta. Seleccione <span" +" class=\"o_odoobot_command\">ayuda</span> y presione enter." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Estado de OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot falló" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Archivo de integración adjunto" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Mando de integración" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Emoji de integración" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Notificación de integración" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Disculpe, tengo sueño. ¡O no! Tal vez solo estoy tratando de ocultar mi " +"ignorancia del lenguaje humano...<br/>Puedo mostrarle las funciones si " +"escribe: <span class=\"o_odoobot_command\">iniciar el recorrido</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Lo siento, no estaba escuchando. Para llamarle la atención a alguien, " +"<b>envíele una notificación</b>. Escriba<span " +"class=\"o_odoobot_command\">@OdooBot</span> y seleccióneme." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "¡Eso no es agradable! Soy un bot, pero tengo sentimientos... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Para <b>enviar un archivo adjunto</b>, haga clic en el icono<i class=\"fa " +"fa-paperclip\" aria-hidden=\"verdadero\"></i> y seleccione un archivo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Para empezar, intente enviarme un emoji :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Desafortunadamente, solo soy un bot 😞 ¡No entiendo! Si necesita ayuda " +"descubriendo nuestro producto, por favor revisa <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">nuestra " +"documentación</a> o <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">nuestros videos</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"¡Guau, tiene talento naturall!<br/>Envíele una notificación a alguien usando" +" @nombre-de-usuario para llamar su atención. <b>Intente etiquetarme " +"utilizando</b> <span class=\"o_odoobot_command\">@OdooBot</span> en una " +"oración." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"¡Sí, estoy aquí! 🎉 <br/>Ahora intente<b>enviar un archivo adjunto</b>, como " +"una foto de tu perro adorable..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "carajo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ayuda" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "te quiero" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "amor" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "iniciar el recorrido" diff --git a/addons/mail_bot/i18n/et.po b/addons/mail_bot/i18n/et.po new file mode 100644 index 00000000..4f1a2dd7 --- /dev/null +++ b/addons/mail_bot/i18n/et.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Piia Paurson <piia@avalah.ee>, 2021 +# Triine Aavik <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Triine Aavik <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Puudub" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Sõnumite kanal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-posti kirjavahetus" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot'i staatus" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Kasutajad" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/eu.po b/addons/mail_bot/i18n/eu.po new file mode 100644 index 00000000..608a489e --- /dev/null +++ b/addons/mail_bot/i18n/eu.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Desgaituta" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Eztabaida kanala" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP bideratzea" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Ulertuko ez dudalaren beldur naiz. Sentitzen dut!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Erabiltzaileak" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "hasi bidaia" diff --git a/addons/mail_bot/i18n/fa.po b/addons/mail_bot/i18n/fa.po new file mode 100644 index 00000000..2dbb45ba --- /dev/null +++ b/addons/mail_bot/i18n/fa.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Arash Sardari <arashss77@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Arash Sardari <arashss77@gmail.com>, 2020\n" +"Language-Team: Persian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "غیر فعال شده" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "کانال بحث" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "موضوع ایمیل" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "مسیریابی HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "شناسه" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "بیکار" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "کاربران" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/fi.po b/addons/mail_bot/i18n/fi.po new file mode 100644 index 00000000..024a09b7 --- /dev/null +++ b/addons/mail_bot/i18n/fi.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020\n" +"Language-Team: Finnish (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Pois käytöstä" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Keskustelukanava" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Sähköpostiviestiketju" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-reititys" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Toimeton" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Käyttäjät" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/fr.po b/addons/mail_bot/i18n/fr.po new file mode 100644 index 00000000..739360d0 --- /dev/null +++ b/addons/mail_bot/i18n/fr.po @@ -0,0 +1,296 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Nicolas Roussey <nro@odoo.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# William Olhasque <william.olhasque@scopea.fr>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Priscilla (prs) Odoo <prs@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Cécile Collart <cco@odoo.com>, 2020\n" +"Language-Team: French (https://www.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=2; plural=(n > 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Haaaanw c'est adorable, vraiment, mais les robots ne fonctionnent pas comme " +"ça. Restons professionnels ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Désactivé" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de discussion" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Discussion par email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Routage HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Je ne suis pas sûr de comprendre. Désolé! " + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inactif" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mail Bot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Pas initialisé" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Statut OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Accessoire d'intégration" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Commande d'intégration" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Emoji Onboarding" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Ping d'intégration" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "C'est pas très gentil! Je suis un robot mais j'ai des sentiments... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Pour commencer, essayez de m'envoyer un emoji :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Wow vous vous en sortez bien! <br/>Mentionnez quelqu'un pour attirer son " +"attention avec @nomdutilisateur. <b>Essayez de me mentionner en " +"utilisant</b> <span class=\"o_odoobot_command\">@OdooBot</span> dans une " +"phrase." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "saperlipopette" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "aide" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "je t'aime" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "love" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "Commencez le tour" diff --git a/addons/mail_bot/i18n/gu.po b/addons/mail_bot/i18n/gu.po new file mode 100644 index 00000000..d60bf9d1 --- /dev/null +++ b/addons/mail_bot/i18n/gu.po @@ -0,0 +1,328 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel <turkesh4friends@gmail.com>, 2018 +# Dharmraj Jhala <dja@openerp.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:05+0000\n" +"PO-Revision-Date: 2018-10-02 10:05+0000\n" +"Last-Translator: Dharmraj Jhala <dja@openerp.com>, 2018\n" +"Language-Team: Gujarati (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:57 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "સંપર્ક" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "પ્રદર્શન નામ" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:42 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:42 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:38 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:74 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:75 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:59 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:73 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "ઓળખ" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:45 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:65 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:69 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:64 +#, python-format +msgid "" +"Odoo has now the permission to send you native notifications on this device." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:61 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:39 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding canned" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:60 +#, python-format +msgid "Permission denied" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:71 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:61 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:67 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:54 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "વપરાશકર્તાઓ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:48 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:63 +#, python-format +msgid "Yay, push notifications are enabled!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:51 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:60 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:58 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:52 +#: code:addons/mail_bot/models/mail_bot.py:73 +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/he.po b/addons/mail_bot/i18n/he.po new file mode 100644 index 00000000..50c6d7fc --- /dev/null +++ b/addons/mail_bot/i18n/he.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Lilach Gilliam <lilach.gilliam@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Lilach Gilliam <lilach.gilliam@gmail.com>, 2021\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "מושבת" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "ערוץ דיון" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "שרשור דוא\"ל" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "ניתוב HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "מזהה" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "סטטוס OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "משתמשים" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/hi.po b/addons/mail_bot/i18n/hi.po new file mode 100644 index 00000000..aa600007 --- /dev/null +++ b/addons/mail_bot/i18n/hi.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Language-Team: Hindi (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/hr.po b/addons/mail_bot/i18n/hr.po new file mode 100644 index 00000000..cf284fe0 --- /dev/null +++ b/addons/mail_bot/i18n/hr.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Tina Milas, 2020 +# Vojislav Opačić <vojislav.opacic@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Vojislav Opačić <vojislav.opacic@gmail.com>, 2020\n" +"Language-Team: Croatian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Onemogućen" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Kanal rasprave" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Nit e-pošte" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmjeravanje" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Bojim se da ne razumijem. Žao mi je!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Prazan" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mali robotić" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Nije inicijaliziran" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/hu.po b/addons/mail_bot/i18n/hu.po new file mode 100644 index 00000000..f0ecde4b --- /dev/null +++ b/addons/mail_bot/i18n/hu.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# krnkris, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Istvan <leki69@gmail.com>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Kikapcsolva" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Kommunikációs csatorna" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-mail szál" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP irányítás" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Attól tartok, hogy nem értem. Bocsánat!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "Azonosító" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Üresjárat" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Nincs inicializálva" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot állapot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/id.po b/addons/mail_bot/i18n/id.po new file mode 100644 index 00000000..f5214f8f --- /dev/null +++ b/addons/mail_bot/i18n/id.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# whenweresober <gulmugurzu@yevme.com>, 2020 +# Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Altela Eleviansyah Pramardhika <altela_pramardhika@yahoo.com>, 2021\n" +"Language-Team: Indonesian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Saluran Diskusi" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Thread email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Senggang" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Pengguna" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/is.po b/addons/mail_bot/i18n/is.po new file mode 100644 index 00000000..6fad6eb8 --- /dev/null +++ b/addons/mail_bot/i18n/is.po @@ -0,0 +1,329 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:05+0000\n" +"PO-Revision-Date: 2018-08-24 09:20+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:57 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "Tengiliður" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion channel" +msgstr "Discussion channel" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Email Thread" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:42 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:42 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:38 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:74 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:75 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:59 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:73 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "Auðkenni" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:45 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:65 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:69 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:64 +#, python-format +msgid "" +"Odoo has now the permission to send you native notifications on this device." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:61 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:39 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding canned" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:60 +#, python-format +msgid "Permission denied" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:71 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:61 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:67 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:54 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Notendur" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:48 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:63 +#, python-format +msgid "Yay, push notifications are enabled!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:51 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:60 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:58 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:52 +#: code:addons/mail_bot/models/mail_bot.py:73 +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/it.po b/addons/mail_bot/i18n/it.po new file mode 100644 index 00000000..30f6a812 --- /dev/null +++ b/addons/mail_bot/i18n/it.po @@ -0,0 +1,307 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.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=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Oooooh è così carino, ma sai, i bot non funzionano così. Sei troppo umano " +"per me! Rimaniamo professionali ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Disattivato" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canale di discussione" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Discussione e-mail" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Ottimo! 👍<br/>Per accedere ai comandi speciali, <b>inizia la frase con</b> " +"<span class=\"o_odoobot_command\">/</span>. Prova a chiedere aiuto." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Instradamento HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Ciao,<br/>la chat di Odoo aiuta i dipendenti a collaborare in modo " +"efficiente. Sono qui per aiutarti a scoprire le sue " +"funzionalità.<br/><b>Prova a inviarmi un emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Temo di non capire. Mi dispiace!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Non sono abbastanza intelligente per rispondere alla tua domanda.<br/>Per " +"seguire la mia guida, chiedi: <span class=\"o_odoobot_command\">inizia il " +"tour</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inattivo" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Bot e-mail" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Non esattamente. Per continuare il tour, invia un emoji: <b>digita</b> <span" +" class=\"o_odoobot_command\">:)</span> e premi invio." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Non inizializzato" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Non mi è chiaro cosa tu stia facendo. Digita <span " +"class=\"o_odoobot_command\">/</span> e attendi quello che ti viene proposto." +" Seleziona <span class=\"o_odoobot_command\">help</span> e premi invio" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Stato OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Errore OdooBot" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Non è molto gentile! Sono un bot, però ho dei sentimenti... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Per <b>inviare un allegato</b>, fai clic sull'<i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icona e seleziona un file." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Per iniziare, prova a mandarmi un emoji :) " + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Sfortunatamente, sono solo un bot 😞 Non ho capito! Se hai bisogno di aiuto " +"per scoprire i nostri prodotti, controlla la <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">documentazione</a>" +" o guarda i <a href=\"https://www.odoo.com/slides\" target=\"_blank\">nostri" +" video</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "cazzo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "aiuto" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "ti amo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "love" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "inizia il tour" diff --git a/addons/mail_bot/i18n/ja.po b/addons/mail_bot/i18n/ja.po new file mode 100644 index 00000000..cc082d62 --- /dev/null +++ b/addons/mail_bot/i18n/ja.po @@ -0,0 +1,288 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# 江口 和志 <k_eguchi@enzantrades.co.jp>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "無効" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "ディスカッションチャンネル" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Eメールスレッド" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTPルーティング" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "アイドル" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBotステータス" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "ユーザ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/ka.po b/addons/mail_bot/i18n/ka.po new file mode 100644 index 00000000..c168727c --- /dev/null +++ b/addons/mail_bot/i18n/ka.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021\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=2; plural=(n!=1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "მომხმარებლები" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/km.po b/addons/mail_bot/i18n/km.po new file mode 100644 index 00000000..f5fe5bd0 --- /dev/null +++ b/addons/mail_bot/i18n/km.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"អាអាវ៉ាវ៉ាពិតជាគួរឱ្យស្រឡាញ់ណាស់ប៉ុន្តែអ្នកដឹងទេរូបយន្តមិនដំណើរការតាមវិធីនោះទេ។" +" អ្នកជាមនុស្សពេកសម្រាប់ខ្ញុំ! សូមរក្សាវាឱ្យមានលក្ខណៈវិជ្ជាជីវៈ។" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "នៃកាយវិកល" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "ប៉ុស្តិ៍ពិភាក្សា" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "អ៊ីម៉ែលខ្សែស្រឡាយ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP ជុំវិញ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "ហ៊ឺម ..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "ខ្ញុំខ្លាចខ្ញុំមិនយល់។" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "ដែលឥតប្រយោជន៍" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mail Bot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "មិនបានចាប់ផ្តើម" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "ឯកសារភ្ជាប់នៅលើទូក" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "បញ្ជាការលើនាវា" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "សញ្ញាអារម្មណ៍នៅលើយន្តហោះ" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "ជិះលើយន្តហោះ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "វាមិនល្អទេ! ខ្ញុំជាមនុស្សយន្តប៉ុន្តែខ្ញុំមានអារម្មណ៍ ..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "ដើម្បីចាប់ផ្តើមព្យាយាមផ្ញើសញ្ញាអារម្មណ៍មកខ្ញុំ :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "អ្នកប្រើ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "ចង្រៃយ៎" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ជួយ" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "ខ្ញុំស្រលាញ់អ្នក" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "ស្រលាញ់" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "ចាប់ផ្តើមដំណើរកម្សាន្ត។" diff --git a/addons/mail_bot/i18n/ko.po b/addons/mail_bot/i18n/ko.po new file mode 100644 index 00000000..7eb21a31 --- /dev/null +++ b/addons/mail_bot/i18n/ko.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# Seongseok Shin <shinss61@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Seongseok Shin <shinss61@hotmail.com>, 2020\n" +"Language-Team: Korean (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "오호 정말 귀엽지만 알다시피 봇은 그런 식으로 작동하지 않아요. 날 너무 인간적으로 대하시네요! 프로답게 행동하자구요 ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "비활성화" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "메일 및 채팅 채널" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "이메일 스레드" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 라우팅" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "음..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "죄송하지만 이해가 안 돼요. 죄송합니다!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "대기" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "메일 봇" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "초기화되지 않음" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Odoo봇 상태" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "신입사원 연수 프로그램 첨부파일" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "온보딩 명령" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "온보딩 이모지" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "온보딩 핑" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "그건 좋지 않아요! 저는 봇이지만 감정이 있어요... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "시작하려면 이모지 :)를 보내주세요" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "사용자" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "제길." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "도움말" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "사랑해요" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "사랑" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "둘러보기 시작" diff --git a/addons/mail_bot/i18n/lb.po b/addons/mail_bot/i18n/lb.po new file mode 100644 index 00000000..1319a99e --- /dev/null +++ b/addons/mail_bot/i18n/lb.po @@ -0,0 +1,303 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-26 08:16+0000\n" +"PO-Revision-Date: 2019-08-26 09:11+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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:0 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:0 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:0 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:0 +#, python-format +msgid "Permission denied" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#: code:addons/mail_bot/models/mail_bot.py:0 +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/lt.po b/addons/mail_bot/i18n/lt.po new file mode 100644 index 00000000..b850e0f3 --- /dev/null +++ b/addons/mail_bot/i18n/lt.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Monika Raciunaite <monika.raciunaite@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# Jonas Zinkevicius <jozi@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2021\n" +"Language-Team: Lithuanian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Išjungta" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusijų kanalas" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "El. pašto diskusija" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP nukreipimas" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Pasyvus" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Būsena" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Vartotojai" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/lv.po b/addons/mail_bot/i18n/lv.po new file mode 100644 index 00000000..ff7363d4 --- /dev/null +++ b/addons/mail_bot/i18n/lv.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# JanisJanis <jbojars@gmail.com>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Email Thread" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Dīkstāve" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Lietotāji" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/mail_bot.pot b/addons/mail_bot/i18n/mail_bot.pot new file mode 100644 index 00000000..c62289f0 --- /dev/null +++ b/addons/mail_bot/i18n/mail_bot.pot @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-11-27 11:24+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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/mn.po b/addons/mail_bot/i18n/mn.po new file mode 100644 index 00000000..0bf88c75 --- /dev/null +++ b/addons/mail_bot/i18n/mn.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Batmunkh Ganbat <batmunkh.g@bumanit.mn>, 2020 +# Nurbahyt Kh <nurbahyt.kh@gmail.com>, 2020 +# Cheemee Bumtsend <cheemeesun@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Cheemee Bumtsend <cheemeesun@gmail.com>, 2020\n" +"Language-Team: Mongolian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Идэвхигүй болсон" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Хөөрөлдөөний суваг" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Имэйл-ын мод" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Хммм..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Би ойлгохгүй гэхээс айж байна.Уучлаарай!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Сул зогссон" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Мэйл Бот" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot-ийн төлөв" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Нэгтгэлийн хавсралт" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/nb.po b/addons/mail_bot/i18n/nb.po new file mode 100644 index 00000000..e86bb461 --- /dev/null +++ b/addons/mail_bot/i18n/nb.po @@ -0,0 +1,284 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Deaktivert" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusjonskanal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Eposttråd" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-ruting" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Meldingsbot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Brukere" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/nl.po b/addons/mail_bot/i18n/nl.po new file mode 100644 index 00000000..b7954ca1 --- /dev/null +++ b/addons/mail_bot/i18n/nl.po @@ -0,0 +1,323 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# Odoo Experts Consultants <consultants@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Odoo Experts Consultants <consultants@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw, dat is echt schattig, maar, weet je, bots werken niet zo. Je bent te" +" menselijk voor mij! Laten we het professioneel houden ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Uitgeschakeld" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Discussiekanaal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-mail discussie" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Super goed! 👍 <br/>Om toegang te krijgen tot speciale opdrachten, <b>begint " +"u uw zin met</b><span class=\"o_odoobot_command\">/</span>. Probeer hulp te " +"krijgen." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Hallo, <br/>Odoo's chat helpt medewerkers efficiënt samen te werken. Ik ben " +"hier om je te helpen de functies ervan te ontdekken.<br/> <b>Probeer me een " +"emoji te sturen</b> <span class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Ik ben een simpele bot, maar als dat een hond is, is hij de schattigste 😊 " +"<br/>Gefeliciteerd, je hebt deze rondleiding voltooid. <b>U kunt dit " +"chatvenster nu sluiten</b>. Geniet van het ontdekken van Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Ik begrijp het helaas niet. Sorry!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Ik ben niet slim genoeg om je vraag te beantwoorden. <br/>Om mij te helpen, " +"vraag <span class=\"o_odoobot_command\">start de rondleiding</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inactief" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mailbot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Niet precies. Stuur een emoji: <b>typ</b> <span " +"class=\"o_odoobot_command\">:)</span> en druk op enter om de rondleiding " +"voort te zetten." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Niet geïnitialiseerd" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Ik weet niet zeker wat u doet. Typ <span " +"class=\"o_odoobot_command\">/</span> en wacht op de voorstellen. Selecteer " +"<span class=\"o_odoobot_command\">help</span> en druk op enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Fout Odoobot" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Onboarding bijlage" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Onboarding commando" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Onboarding emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Onboarding ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Sorry dat ik slaperig ben. Of niet! Misschien probeer ik gewoon mijn " +"onbekendheid met de menselijke taal te verbergen ... <br/>Ik kan je " +"kenmerken laten zien als je schrijft: <span " +"class=\"o_odoobot_command\">start de rondleiding</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Sorry, ik luister niet. <b>Ping hem</b> om iemands aandacht te trekken. " +"Schrijf <span class=\"o_odoobot_command\">@OdooBot</span> en selecteer mij." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Dat is niet vriendelijk! Ik ben een bot maar heb ook gevoelens... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Om een <b>bijlage te verzenden</b>, klikt u op het <i class=\"fa fa-" +"paperclip\" aria-hidden=\"true\"></i>pictogram en selecteert u een bestand." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Probeer mij een emoji te sturen om te starten :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Helaas ben ik maar een bot 😞 Ik begrijp het niet! Als u hulp nodig heeft bij" +" het ontdekken van ons product, bekijk dan <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">onze " +"documentatie</a> of <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">onze video's</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Wauw, je bent een natuurtalent! <br/>Ping iemand met @gebruikersnaam om hun " +"aandacht te trekken. <b>Probeer me te pingen</b> met <span " +"class=\"o_odoobot_command\">@OdooBot</span> in een zin." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Ja, ik ben hier! 🎉 <br/>Probeer nu <b>een bijlage te verzenden</b>, zoals " +"een foto van je schattige hond ..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "fuck" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "help" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "Ik hou van je" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "liefde" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "start de rondleiding" diff --git a/addons/mail_bot/i18n/pl.po b/addons/mail_bot/i18n/pl.po new file mode 100644 index 00000000..58679c23 --- /dev/null +++ b/addons/mail_bot/i18n/pl.po @@ -0,0 +1,289 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Mariusz, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Karol Rybak <karolrybak85@gmail.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020\n" +"Language-Team: Polish (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw, to naprawdę słodkie, ale wiesz, boty nie działają w ten sposób. " +"Jesteś dla mnie zbyt ludzki! Bądźmy profesjonalni ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Wyłączone" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Kanał dyskusyjny" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Wątek email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Wytyczanie HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Obawiam się, że nie rozumiem. Przepraszam!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Bezczynny" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Bot poczty" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Nie zainicjowano" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Status OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Wdrażanie załącznika" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Wdrażanie komend" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Wdrażanie emotikon" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Wdrażanie pingów" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "To nie jest miłe! Jestem botem, ale mam uczucia... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Aby rozpocząć, wyślij mi emotikon :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Użytkownicy" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "kurwa" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "pomoc" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "kocham Cię" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "miłość" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "rozpocznij wycieczkę" diff --git a/addons/mail_bot/i18n/pt.po b/addons/mail_bot/i18n/pt.po new file mode 100644 index 00000000..e990189f --- /dev/null +++ b/addons/mail_bot/i18n/pt.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.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=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de Discussão" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Email Thread" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Rotas HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/pt_BR.po b/addons/mail_bot/i18n/pt_BR.po new file mode 100644 index 00000000..ea55c9ec --- /dev/null +++ b/addons/mail_bot/i18n/pt_BR.po @@ -0,0 +1,327 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# Yannick Belot <yannickbh@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Marcelo Costa <marcelo@comdesk.com.br>, 2020 +# Lauro de Lima <lauro@ciclix.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.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=2; plural=(n > 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw! Isto é muito fofo, mas como você sabe, bots não funcionam desta " +"forma. Você está muito humano para mim! Vamos mantê-lo profissional ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Desabilitado" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de Discussão" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Tópico do E-mail" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Ótimo! 👍<br/>Para acessar comandos especiais, <b>inicie sua sentença com</b>" +" <span class=\"o_odoobot_command\">/</span>. Tente obter ajuda." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Roteamento HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Olá,<br/>O chat Odoo's ajuda na colaboração eficiente de funcionários. Estou" +" aqui para ajudá-lo a descobrir esses recursos.<br/><b>Tente me enviar um " +"emoji</b> <span class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Eu sou um simples bot, mas se é um cachorro, ele é o mais fofo 😊 Parabéns, " +"você finalizou este tour. Você agora pode <b>fechar esta janela de " +"conversa</b>. Divirta-se descobrindo Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Eu tenho medo de não entender. Desculpe!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Eu não sou inteligente o suficiente para responder sua pergunta.<br/>Para " +"seguir meu guia, pergunte: <span class=\"o_odoobot_command\">iniciar o " +"tour</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inativo" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Bot de email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Não exatamente. Para continuar o tour, envie um emoji: <b>tipo</b> <span " +"class=\"o_odoobot_command\">:)</span> e aperte enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Não inicializado" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Não tenho certeza do que você está fazendo. Por favor, digite <span " +"class=\"o_odoobot_command\">/</span> e espere pelas proposições. Selecione " +"<span class=\"o_odoobot_command\">ajuda</span> e aperte enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Status do OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot falhou" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Onboarding attachement" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Comando integrado" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Emoji integrado" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Ping integrado" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Desculpe, estou com sono. Ou não! Talvez eu esteja apenas tentando esconder " +"meu desconhecimento da linguagem humana...<br/>Eu posso te mostrar recursos " +"se você escrever: <span class=\"o_odoobot_command\">iniciar o tour</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Desculpe, não estou ouvindo. Para chamar a atenção de alguém, <b>ping " +"nele</b>. Escreva <span class=\"o_odoobot_command\">@OdooBot</span> e me " +"selecione." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Isto não é legal! Eu sou um bot, mas tenho sentimentos... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Para <b>enviar um anexo</b>, clique no <i class=\"fa fa-paperclip\" aria-" +"hidden=\"true\"></i> ícone e selecione um arquivo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Para iniciar, tente enviar-me um emoji :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Infelizmente, sou apenas um bot 😞 Não entendo! Se precisar de ajuda para " +"descobrir nosso produto, verifique <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">nossa " +"documentação</a> ou <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">nossos vídeos</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Wow, você é natural!<br/>Mencione alguém com @usuario para chamar sua " +"atenção. <b>Tente chamar minha atenção utilizando</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> em uma frase." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Sim, eu estou aqui! 🎉 <br/>Agora, tente <b>enviar um anexo</b>, como uma " +"foto de um cachorro fofo..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "Porra" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ajuda" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "eu te amo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "amor" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "iniciar o tour" diff --git a/addons/mail_bot/i18n/ro.po b/addons/mail_bot/i18n/ro.po new file mode 100644 index 00000000..03a29e1e --- /dev/null +++ b/addons/mail_bot/i18n/ro.po @@ -0,0 +1,322 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# sharkutz <sharkutz4life@yahoo.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Hongu Cosmin <cosmin513@gmail.com>, 2020\n" +"Language-Team: Romanian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw este foarte drăguț, dar, știi, roboții nu funcționează așa. Ești prea" +" uman pentru mine! Să-l păstrăm profesionist ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Dezactivat" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal Discuții" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Fir E-mail" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Grozav! 👍<br/>Pentru a accesa comenzi speciale, <b> începeți propoziția " +"cu</b><span class=\"o_odoobot_command\"> /</span>. Încercați să primiți " +"ajutor." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Rutare HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Bună ziua, <br/>chat-ul Odoo îi ajută pe angajați să colaboreze eficient. " +"Sunt aici pentru a vă ajuta să îi descoperiți caracteristicile. " +"<br/><b>Încercați să-mi trimiteți un emoticon </b><span " +"class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Sunt un robot simplu, dar dacă acesta este un câine, el este cel mai drăguț " +"😊<br/> Felicitări, ați terminat acest tur. Acum puteți <b> închide această " +"fereastră de chat </b>. Bucurați-vă de descoperirea Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Mă tem că nu înțeleg. Îmi pare rău!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Nu sunt suficient de deștept să-ți răspund la întrebare.<br/> Pentru a-mi " +"urma ghidul, întreabă:<span class=\"o_odoobot_command\"> începe " +"turul</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Inactiv" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Nu chiar. Pentru a continua turul, trimiteți un emoticon:<b> tastați</b> " +"<span class=\"o_odoobot_command\"> :)</span> și apăsați Enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Neinițializat" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Nu sunt sigur ce faceți. Vă rugăm, tastați <span " +"class=\"o_odoobot_command\"> /</span> și așteptați propunerile. " +"Selectați<span class=\"o_odoobot_command\"> ajutor</span> și apăsați Enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Stare OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot nu a reușit" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Îmi pare rău că sunt adomir. Sau nu! Poate că încerc doar să ascund lipsa de" +" conștientizare a limbajului uman ...<br/> Vă pot arăta caracteristici dacă " +"scrieți: <span class=\"o_odoobot_command\">începeți turul</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Îmi pare rău, nu ascult. Pentru a atrage atenția cuiva, <b>faceți-i " +"ping</b>. Scrie <span class=\"o_odoobot_command\"> @OdooBot</span> și " +"selectează-mă." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Asta nu-i frumos! Sunt robot dar am sentimente ... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Pentru <b> a trimite un atașament</b>, faceți clic pe<i class=\"fa fa-" +"paperclip\" aria-hidden=\"true\"></i> pictogramă și selectați un fișier." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Pentru a începe, încercați să-mi trimiteți un emoticon :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Din păcate, sunt doar un robot 😞 Nu înțeleg! Dacă aveți nevoie de ajutor " +"pentru a descoperi produsul nostru, vă rugăm să consultați <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">documentația</a> " +"sau <a href=\"https://www.odoo.com/slides\" target=\"_blank\">videoclipurile" +" noastre</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Da, sunt aici! 🎉 <br/>Acum, încercați <b>să trimiteți un atașament</b>, cum " +"ar fi o fotografie a câinelui dvs. drăguț ..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "La dracu" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "ajutor" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "te iubesc" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "iubire" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "începeți turul" diff --git a/addons/mail_bot/i18n/ru.po b/addons/mail_bot/i18n/ru.po new file mode 100644 index 00000000..819f88e3 --- /dev/null +++ b/addons/mail_bot/i18n/ru.po @@ -0,0 +1,290 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@itpp.dev>, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"В это действительно мило, но, вы знаете, боты не работают следующим образом." +" Вы слишком человеческие для меня! Давайте оставим это в профессиональном " +"напрямку❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Отключен" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Канал обсуждения" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Цепочка эл.почты" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизация HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Хммм ..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Кажется, я не понимаю. Извините!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "Идентификатор" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Холостой ход" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Почтовый бот" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "НЕ инициализирован" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "статус OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "приобщено прикрепления" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "входная команда" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "встроенные emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "встроенные ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Это не хорошо! Я бот, но у меня есть чувство ... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Чтобы начать, попробуйте отправить смайлик :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Пользователи" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "черт" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "помощь" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "Я люблю тебя" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "люблю" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "начать тур" diff --git a/addons/mail_bot/i18n/si.po b/addons/mail_bot/i18n/si.po new file mode 100644 index 00000000..398bf443 --- /dev/null +++ b/addons/mail_bot/i18n/si.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/sk.po b/addons/mail_bot/i18n/sk.po new file mode 100644 index 00000000..e65a80ff --- /dev/null +++ b/addons/mail_bot/i18n/sk.po @@ -0,0 +1,287 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Matus Krnac <matus.krnac@gmail.com>, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Blokovaný" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusný kanál" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Emailové vlákno" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP smerovanie" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Nečinný" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Nie je inicializovaný" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot stav" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Užívatelia" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "trhni si" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "pomoc" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "ľúbim ťa" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "láska" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "začať prehliadku" diff --git a/addons/mail_bot/i18n/sl.po b/addons/mail_bot/i18n/sl.po new file mode 100644 index 00000000..f4cb29e9 --- /dev/null +++ b/addons/mail_bot/i18n/sl.po @@ -0,0 +1,286 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Onemogočeno" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Obravnava z elektronsko pošto" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP usmerjanje" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Nedejaven" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Ni inicializirano" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot status" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "pomoč" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "začni ogled" diff --git a/addons/mail_bot/i18n/sr.po b/addons/mail_bot/i18n/sr.po new file mode 100644 index 00000000..1a761918 --- /dev/null +++ b/addons/mail_bot/i18n/sr.po @@ -0,0 +1,326 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-10-02 10:05+0000\n" +"PO-Revision-Date: 2018-10-02 10:05+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:57 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:42 +#, python-format +msgid "Enable desktop notifications to chat" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:42 +#, python-format +msgid "" +"Great! 👍<br/>Now, try to <b>send an attachment</b>, like a picture of your " +"cute dog..." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:38 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji :)</b>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:74 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:75 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:59 +#, python-format +msgid "" +"I'm just a bot... :( You can check <a " +"href=\"https://www.odoo.com/page/docs\">our documentation</a>) for more " +"information!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:73 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:45 +#, python-format +msgid "" +"Not a cute dog, but you get it 😊<br/>To access special features, <b>start " +"your sentence with '/'</b>. Try to get help." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:65 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji, <b>type \":)\"</b> and " +"press enter." +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:69 +#, python-format +msgid "" +"Not sure wat you are doing. Please press / and wait for the propositions. " +"Select \"help\" and press enter" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:64 +#, python-format +msgid "" +"Odoo has now the permission to send you native notifications on this device." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:61 +#, python-format +msgid "" +"Odoo will not have the permission to send native notifications on this " +"device." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/mailbot_service.js:39 +#, python-format +msgid "OdooBot has a request" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding canned" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: selection:res.users,odoobot_state:0 +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:60 +#, python-format +msgid "Permission denied" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Pong." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:71 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write \"@odoobot\" and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:61 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:67 +#, python-format +msgid "" +"To <b>send an attachment</b>, click the 📎 icon on the right, and select a " +"file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:54 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:48 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone to grab its attention with " +"@nameoftheuser. <b>Try to ping me using @OdooBot</b> in a sentence." +msgstr "" + +#. module: mail_bot +#. openerp-web +#: code:addons/mail_bot/static/src/js/systray_messaging_menu.js:63 +#, python-format +msgid "Yay, push notifications are enabled!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:51 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>You finished the tour, you can <b>close this chat " +"window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:79 +#, python-format +msgid "Yep, OdooBot is in the place!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:60 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:58 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:56 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:52 +#: code:addons/mail_bot/models/mail_bot.py:73 +#: code:addons/mail_bot/models/mail_bot.py:76 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/sv.po b/addons/mail_bot/i18n/sv.po new file mode 100644 index 00000000..0f92a71c --- /dev/null +++ b/addons/mail_bot/i18n/sv.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Inaktivera" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-posttråd" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP-rutt" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Användare" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/th.po b/addons/mail_bot/i18n/th.po new file mode 100644 index 00000000..afc0c0cd --- /dev/null +++ b/addons/mail_bot/i18n/th.po @@ -0,0 +1,285 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Somchart Jabsung <jabsung.s@gmail.com>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Disabled" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "See http://openerp.com" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "รหัส" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "ผู้ใช้งาน" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/tr.po b/addons/mail_bot/i18n/tr.po new file mode 100644 index 00000000..68035b1d --- /dev/null +++ b/addons/mail_bot/i18n/tr.po @@ -0,0 +1,324 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Tugay Hatıl <tugayh@projetgrup.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaa bu çok sevimli ama bilirsiniz, botlar bu şekilde çalışmaz. Benim için " +"çok insanisin! Profesyonel tutalım ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Devre Dışı" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Mesajlaşma Kanalı" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "E-Posta İşlemleri" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Yönlendirme" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Korkarım anlamadım. Üzgünüm!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Idle" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Posta Botu" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Başlatılmadı" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot Durumu" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot Failed" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Yerleştirme ekleri" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Yerleştirme komutu" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Yeni başlayan emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Yeni ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Bu hoş değil! Ben bir botum ama hislerim var ... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Başlamak için bana bir emoji göndermeyi deneyin :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Vay canına, doğal birisin! <br/>Dikkatini çekmek için birine @ kullanıcı adı" +" ile ping atın.<b> Cümle içinde</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> kullanarak bana ping atmayı " +"dene." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "kahretsin" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "yardım" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "Seni seviyorum" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "Aşk" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "tura başla" diff --git a/addons/mail_bot/i18n/uk.po b/addons/mail_bot/i18n/uk.po new file mode 100644 index 00000000..ab6dfc88 --- /dev/null +++ b/addons/mail_bot/i18n/uk.po @@ -0,0 +1,319 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n" +"Language-Team: Ukrainian (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"О, це дійсно мило, але, ви знаєте, боти не працюють таким чином. Ви занадто " +"людські для мене! Давайте залишимо це у професійному полі❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Відключено" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Канал обговорення" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Тема електронної пошти" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Чудово! 👍<br/>Щоб отримати доступ до спеціальних команд, <b>почніть писати " +"ваше речення з</b> <span class=\"o_odoobot_command\">/</span>. Спробуйте " +"отримати допомогу." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "Маршрутизація HTTP" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Вітаємо,<br/>Чат Odoo допомагає співробітникам співпрацювати ефективніше. Я" +" тут, щоб допомогти вам дізнатися про функції чату.<br/><b>Спробуйте " +"надіслати мені смайлик</b> <span class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Хммм..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"Я простий бот, але якщо це собака, то вона дуже мила 😊 <br/>Вітаємо, ви " +"завершили ознайомчий тур. Тепер ви можете <b>закрити це вікно чату</b>. " +"Насолоджуйтесь Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "Здається, я не розумію. Вибачте!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Я не достатньо розумний, щоб відповісти на ваше запитання.<br/>Щоби " +"переглянути ознайомчий тур, запитайте: <span " +"class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Не задіяний" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Поштовий бот" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Не звосім. Щоби продовжити тур, надішліть смайл: <b>введіть</b> <span " +"class=\"o_odoobot_command\">:)</span> та натисніть enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Не ініціалізовано" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Не впевнений, що ви робите. Введіть <span " +"class=\"o_odoobot_command\">/</span> та очікуйте пропозиції. Оберіть <span " +"class=\"o_odoobot_command\">help</span> та натисніть enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Статус OdooBot " + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Помилка Odoobot" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Вхідне прикріплення" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Вхідна команда" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Вбудовані emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Вбудовані ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Вибачте, я сонний. Чи ні! Можливо я посто намагаюся приховати моє незнання " +"людської мови...<br/>Я можу показати вам функції, якщо ви напишете: <span " +"class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Вибачте, я не слухаю. Щоби привернути чиюсь увагу, <b>позначте його</b>. " +"Напишіть <span class=\"o_odoobot_command\">@OdooBot</span> та оберіть мене." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Це не добре! Я бот, але у мене є почуття... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"Щоб <b>надіслати прикріплення</b>, натисніть іконку <i class=\"fa fa-" +"paperclip\" aria-hidden=\"true\"></i> та оберіть файл." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Щоби розпочати, спробуйте надіслати смайлик :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"На жаль, я лише бот 😞 Я не розумію! Якщо вам потрібна допомога дізнатися " +"більше про наш товар, перегляньте <a href=\"https://www.odoo.com/page/docs\"" +" target=\"_blank\">нашу документацію</a> або <a " +"href=\"https://www.odoo.com/slides\" target=\"_blank\">наші відео</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Користувачі" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"Вау, ви справжній!<br/>Позначте когось через @username, щоби привернути його" +" увагу. <b>Спробуйте позначити мене, використовуючи</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> у реченні." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Так, я тут! 🎉 <br/>Тепер спробуйте <b>надіслати прикріплення</b>, наприклад," +" зображення вашого милого пса..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "дідько" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "допомога" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "ти мені подобаєшся" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "подобається" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "розпочати тур" diff --git a/addons/mail_bot/i18n/ur.po b/addons/mail_bot/i18n/ur.po new file mode 100644 index 00000000..7d9476d3 --- /dev/null +++ b/addons/mail_bot/i18n/ur.po @@ -0,0 +1,279 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "" diff --git a/addons/mail_bot/i18n/vi.po b/addons/mail_bot/i18n/vi.po new file mode 100644 index 00000000..5064e808 --- /dev/null +++ b/addons/mail_bot/i18n/vi.po @@ -0,0 +1,318 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Minh Nguyen <ndminh210994@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "" +"Aaaaaw thật dễ thương nhưng, bạn biết đấy, bot không hoạt động theo cách đó." +" Bạn quá con người đối với tôi! Hãy giữ cho nó chuyên nghiệp" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "Đã vô hiệu" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "Kênh thảo luận" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "Luồng Email" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP Routing" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "Hmmm..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "I sợ là mình không hiểu. Rất tiếc!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "Rảnh rỗi" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "Mail Bot" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "Không được khởi tạo" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "Trạng thái của OdooBot" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot Failed" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Đính kèm" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Lệnh" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Biểu tượng cảm xúc" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "Điều đó không tốt! Tôi là một bot nhưng tôi có cảm xúc ... 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "Để bắt đầu, hãy thử gửi cho tôi một biểu tượng cảm xúc :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "Người dùng" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "fuck" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "giúp" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "i love you" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "love" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "bắt đầu chuyến đi tham quan" diff --git a/addons/mail_bot/i18n/zh_CN.po b/addons/mail_bot/i18n/zh_CN.po new file mode 100644 index 00000000..12a5a596 --- /dev/null +++ b/addons/mail_bot/i18n/zh_CN.po @@ -0,0 +1,313 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# Martin Trigaux, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# ChinaMaker <liuct@chinamaker.net>, 2020 +# snow wang <147156565@qq.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# as co02 <asco02@163.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2021 +# liAnGjiA <liangjia@qq.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: liAnGjiA <liangjia@qq.com>, 2021\n" +"Language-Team: Chinese (China) (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "自动化、人性化、高效率、专业化" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "禁用" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "讨论频道" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "邮件主题" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" +"我的个老天呀您真棒给您点个赞! 👍<br/>若使用表情包 <b>请使用特殊命令输入</b> <span " +"class=\"o_odoobot_command\">/</span>. 尝试获取帮助。" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" +"你好,<br/>Odoo系统内部就支持互相聊天沟通协作。来来来一起学一学新功能呗。<br/><b>您请试着发个笑脸表情看看效果</b> <span " +"class=\"o_odoobot_command\">:)</span>" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "嗯..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "亲, 我还是个宝宝 😊 <br/>谁还不是宝宝。 <b>既然如此那就让两个宝宝报团取暖</b>。 E相亲相爱吧。" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "抱歉我还不能理解." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"我脑子比较笨,没明白你的问题是什么。<br/>按指引去做: <span " +"class=\"o_odoobot_command\">先学一学呗</span>。" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "空闲" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "邮件机器人" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" +"嗯对你说的都对。 不过你想要继续操作的话,就发送笑脸表情emoji: <b>输入</b> <span " +"class=\"o_odoobot_command\">:)</span> 然后按回车。" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "未初始化" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" +"我不知道你想干嘛。 请,输入 <span class=\"o_odoobot_command\">/</span> 稍等片刻,选 <span " +"class=\"o_odoobot_command\">帮助</span> 然后按回车" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "小秘书状态" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "Odoobot 挂了" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "入门教程 - 附件" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "入门教程 - 命令" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "入门教程 - 表情" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "入门教程 - ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" +"对不起我困了。我不管!人类语言如此博大精深我对您的敬仰犹如滔滔江水连绵不绝...<br/>亲试一下: <span " +"class=\"o_odoobot_command\">开始游览</span>。" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" +"对不起, 我走了个神. 抽根烟压压惊, <b>ping 盘TA</b>. Write <span " +"class=\"o_odoobot_command\">@OdooBot</span> 还是选我吧." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "请重新输入搜索内容··· 💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" +"嗯 <b>上传附件</b>, 点击 <i class=\"fa fa-paperclip\" aria-hidden=\"true\"></i> " +"图标或拖放上传。" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "开始,请尝试给我我发一个笑脸 :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" +"悲伤是个奢侈品, 我只是个机器人 😞 我消受不起! 如您想帮助我们快乐成长 <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">我们的文档</a> 或者 <a " +"href=\"https://www.odoo.com/slides\" target=\"_blank\">我们的视频</a>。" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "用户" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" +"哇,你真是个天才!<br/>艾特下 @某人 撩一下TA。 <b>或者艾特我</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> 找我聊一下呗。" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "是的老朋友, 是我! 🎉 <br/>现在, 请试试 <b>上传附件</b>, 比如你的小狗的照片..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "操" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "帮助" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "我爱您" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "爱" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "开始游览" diff --git a/addons/mail_bot/i18n/zh_TW.po b/addons/mail_bot/i18n/zh_TW.po new file mode 100644 index 00000000..04a7ecea --- /dev/null +++ b/addons/mail_bot/i18n/zh_TW.po @@ -0,0 +1,283 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_bot +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-27 11:24+0000\n" +"PO-Revision-Date: 2020-09-07 08:14+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.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: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Aaaaaw that's really cute but, you know, bots don't work that way. You're " +"too human for me! Let's keep it professional ❤️" +msgstr "哈哈,那真的很可愛,但是,您知道,機器人不是這樣工作的。您對我來說太人性化了!讓我們保持專業 ❤️" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__disabled +msgid "Disabled" +msgstr "停用" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_channel +msgid "Discussion Channel" +msgstr "討論群組" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__display_name +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__display_name +#: model:ir.model.fields,field_description:mail_bot.field_res_users__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_thread +msgid "Email Thread" +msgstr "電郵線程" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Great! 👍<br/>To access special commands, <b>start your sentence with</b> " +"<span class=\"o_odoobot_command\">/</span>. Try getting help." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_ir_http +msgid "HTTP Routing" +msgstr "HTTP 路由" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_channel.py:0 +#, python-format +msgid "" +"Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to " +"help you discover its features.<br/><b>Try to send me an emoji</b> <span " +"class=\"o_odoobot_command\">:)</span>" +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "Hmmm..." +msgstr "嗯..." + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I am a simple bot, but if that's a dog, he is the cutest 😊 " +"<br/>Congratulations, you finished this tour. You can now <b>close this chat" +" window</b>. Enjoy discovering Odoo." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "I'm afraid I don't understand. Sorry!" +msgstr "抱歉我還是不能理解. 對不起!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"I'm not smart enough to answer your question.<br/>To follow my guide, ask: " +"<span class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel__id +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread__id +#: model:ir.model.fields,field_description:mail_bot.field_res_users__id +msgid "ID" +msgstr "ID" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__idle +msgid "Idle" +msgstr "閒置" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_ir_http____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_bot____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_channel____last_update +#: model:ir.model.fields,field_description:mail_bot.field_mail_thread____last_update +#: model:ir.model.fields,field_description:mail_bot.field_res_users____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_mail_bot +msgid "Mail Bot" +msgstr "信件機器人" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not exactly. To continue the tour, send an emoji: <b>type</b> <span " +"class=\"o_odoobot_command\">:)</span> and press enter." +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__not_initialized +msgid "Not initialized" +msgstr "未初始化" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Not sure what you are doing. Please, type <span " +"class=\"o_odoobot_command\">/</span> and wait for the propositions. Select " +"<span class=\"o_odoobot_command\">help</span> and press enter" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_state +msgid "OdooBot Status" +msgstr "OdooBot 狀態" + +#. module: mail_bot +#: model:ir.model.fields,field_description:mail_bot.field_res_users__odoobot_failed +msgid "Odoobot Failed" +msgstr "" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_attachement +msgid "Onboarding attachement" +msgstr "Onboarding 附件" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_command +msgid "Onboarding command" +msgstr "Onboarding 命令" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_emoji +msgid "Onboarding emoji" +msgstr "Onboarding emoji" + +#. module: mail_bot +#: model:ir.model.fields.selection,name:mail_bot.selection__res_users__odoobot_state__onboarding_ping +msgid "Onboarding ping" +msgstr "Onboarding ping" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of " +"human language...<br/>I can show you features if you write: <span " +"class=\"o_odoobot_command\">start the tour</span>." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Sorry, I am not listening. To get someone's attention, <b>ping him</b>. " +"Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "That's not nice! I'm a bot but I have feelings... 💔" +msgstr "這讓我感覺藍瘦香菇,我雖然是機器人但...我也有知覺💔" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" " +"aria-hidden=\"true\"></i> icon and select a file." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "To start, try to send me an emoji :)" +msgstr "開始,嘗試發給我一個笑臉 :)" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Unfortunately, I'm just a bot 😞 I don't understand! If you need help " +"discovering our product, please check <a " +"href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our " +"documentation</a> or <a href=\"https://www.odoo.com/slides\" " +"target=\"_blank\">our videos</a>." +msgstr "" + +#. module: mail_bot +#: model:ir.model,name:mail_bot.model_res_users +msgid "Users" +msgstr "使用者" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Wow you are a natural!<br/>Ping someone with @username to grab their " +"attention. <b>Try to ping me using</b> <span " +"class=\"o_odoobot_command\">@OdooBot</span> in a sentence." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "" +"Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture" +" of your cute dog..." +msgstr "" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "fuck" +msgstr "嘖嘖!" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "help" +msgstr "幫助" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "i love you" +msgstr "愛老虎油" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "love" +msgstr "愛" + +#. module: mail_bot +#: code:addons/mail_bot/models/mail_bot.py:0 +#, python-format +msgid "start the tour" +msgstr "開始遊覽" diff --git a/addons/mail_bot/models/__init__.py b/addons/mail_bot/models/__init__.py new file mode 100644 index 00000000..709b1f93 --- /dev/null +++ b/addons/mail_bot/models/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import ir_http +from . import mail_bot +from . import mail_channel +from . import mail_thread +from . import res_users diff --git a/addons/mail_bot/models/ir_http.py b/addons/mail_bot/models/ir_http.py new file mode 100644 index 00000000..1c5c3916 --- /dev/null +++ b/addons/mail_bot/models/ir_http.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class Http(models.AbstractModel): + _inherit = 'ir.http' + + def session_info(self): + res = super(Http, self).session_info() + if self.env.user.has_group('base.group_user'): + res['odoobot_initialized'] = self.env.user.odoobot_state not in [False, 'not_initialized'] + return res diff --git a/addons/mail_bot/models/mail_bot.py b/addons/mail_bot/models/mail_bot.py new file mode 100644 index 00000000..a548647e --- /dev/null +++ b/addons/mail_bot/models/mail_bot.py @@ -0,0 +1,238 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import itertools +import random + +from odoo import models, _ + + +class MailBot(models.AbstractModel): + _name = 'mail.bot' + _description = 'Mail Bot' + + def _apply_logic(self, record, values, command=None): + """ Apply bot logic to generate an answer (or not) for the user + The logic will only be applied if odoobot is in a chat with a user or + if someone pinged odoobot. + + :param record: the mail_thread (or mail_channel) where the user + message was posted/odoobot will answer. + :param values: msg_values of the message_post or other values needed by logic + :param command: the name of the called command if the logic is not triggered by a message_post + """ + odoobot_id = self.env['ir.model.data'].xmlid_to_res_id("base.partner_root") + if len(record) != 1 or values.get("author_id") == odoobot_id: + return + if self._is_bot_pinged(values) or self._is_bot_in_private_channel(record): + body = values.get("body", "").replace(u'\xa0', u' ').strip().lower().strip(".!") + answer = self._get_answer(record, body, values, command) + if answer: + message_type = values.get('message_type', 'comment') + subtype_id = values.get('subtype_id', self.env['ir.model.data'].xmlid_to_res_id('mail.mt_comment')) + record.with_context(mail_create_nosubscribe=True).sudo().message_post(body=answer, author_id=odoobot_id, message_type=message_type, subtype_id=subtype_id) + + def _get_answer(self, record, body, values, command=False): + # onboarding + odoobot_state = self.env.user.odoobot_state + if self._is_bot_in_private_channel(record): + # main flow + if odoobot_state == 'onboarding_emoji' and self._body_contains_emoji(body): + self.env.user.odoobot_state = "onboarding_command" + self.env.user.odoobot_failed = False + return _("Great! 👍<br/>To access special commands, <b>start your sentence with</b> <span class=\"o_odoobot_command\">/</span>. Try getting help.") + elif odoobot_state == 'onboarding_command' and command == 'help': + self.env.user.odoobot_state = "onboarding_ping" + self.env.user.odoobot_failed = False + return _("Wow you are a natural!<br/>Ping someone with @username to grab their attention. <b>Try to ping me using</b> <span class=\"o_odoobot_command\">@OdooBot</span> in a sentence.") + elif odoobot_state == 'onboarding_ping' and self._is_bot_pinged(values): + self.env.user.odoobot_state = "onboarding_attachement" + self.env.user.odoobot_failed = False + return _("Yep, I am here! 🎉 <br/>Now, try <b>sending an attachment</b>, like a picture of your cute dog...") + elif odoobot_state == 'onboarding_attachement' and values.get("attachment_ids"): + self.env.user.odoobot_state = "idle" + self.env.user.odoobot_failed = False + return _("I am a simple bot, but if that's a dog, he is the cutest 😊 <br/>Congratulations, you finished this tour. You can now <b>close this chat window</b>. Enjoy discovering Odoo.") + elif odoobot_state in (False, "idle", "not_initialized") and (_('start the tour') in body.lower()): + self.env.user.odoobot_state = "onboarding_emoji" + return _("To start, try to send me an emoji :)") + # easter eggs + elif odoobot_state == "idle" and body in ['❤️', _('i love you'), _('love')]: + return _("Aaaaaw that's really cute but, you know, bots don't work that way. You're too human for me! Let's keep it professional ❤️") + elif _('fuck') in body or "fuck" in body: + return _("That's not nice! I'm a bot but I have feelings... 💔") + # help message + elif self._is_help_requested(body) or odoobot_state == 'idle': + return _("Unfortunately, I'm just a bot 😞 I don't understand! If you need help discovering our product, please check " + "<a href=\"https://www.odoo.com/page/docs\" target=\"_blank\">our documentation</a> or " + "<a href=\"https://www.odoo.com/slides\" target=\"_blank\">our videos</a>.") + else: + # repeat question + if odoobot_state == 'onboarding_emoji': + self.env.user.odoobot_failed = True + return _("Not exactly. To continue the tour, send an emoji: <b>type</b> <span class=\"o_odoobot_command\">:)</span> and press enter.") + elif odoobot_state == 'onboarding_attachement': + self.env.user.odoobot_failed = True + return _("To <b>send an attachment</b>, click on the <i class=\"fa fa-paperclip\" aria-hidden=\"true\"></i> icon and select a file.") + elif odoobot_state == 'onboarding_command': + self.env.user.odoobot_failed = True + return _("Not sure what you are doing. Please, type <span class=\"o_odoobot_command\">/</span> and wait for the propositions. Select <span class=\"o_odoobot_command\">help</span> and press enter") + elif odoobot_state == 'onboarding_ping': + self.env.user.odoobot_failed = True + return _("Sorry, I am not listening. To get someone's attention, <b>ping him</b>. Write <span class=\"o_odoobot_command\">@OdooBot</span> and select me.") + return random.choice([ + _("I'm not smart enough to answer your question.<br/>To follow my guide, ask: <span class=\"o_odoobot_command\">start the tour</span>."), + _("Hmmm..."), + _("I'm afraid I don't understand. Sorry!"), + _("Sorry I'm sleepy. Or not! Maybe I'm just trying to hide my unawareness of human language...<br/>I can show you features if you write: <span class=\"o_odoobot_command\">start the tour</span>.") + ]) + return False + + def _body_contains_emoji(self, body): + # coming from https://unicode.org/emoji/charts/full-emoji-list.html + emoji_list = itertools.chain( + range(0x231A, 0x231c), + range(0x23E9, 0x23f4), + range(0x23F8, 0x23fb), + range(0x25AA, 0x25ac), + range(0x25FB, 0x25ff), + range(0x2600, 0x2605), + range(0x2614, 0x2616), + range(0x2622, 0x2624), + range(0x262E, 0x2630), + range(0x2638, 0x263b), + range(0x2648, 0x2654), + range(0x265F, 0x2661), + range(0x2665, 0x2667), + range(0x267E, 0x2680), + range(0x2692, 0x2698), + range(0x269B, 0x269d), + range(0x26A0, 0x26a2), + range(0x26AA, 0x26ac), + range(0x26B0, 0x26b2), + range(0x26BD, 0x26bf), + range(0x26C4, 0x26c6), + range(0x26D3, 0x26d5), + range(0x26E9, 0x26eb), + range(0x26F0, 0x26f6), + range(0x26F7, 0x26fb), + range(0x2708, 0x270a), + range(0x270A, 0x270c), + range(0x270C, 0x270e), + range(0x2733, 0x2735), + range(0x2753, 0x2756), + range(0x2763, 0x2765), + range(0x2795, 0x2798), + range(0x2934, 0x2936), + range(0x2B05, 0x2b08), + range(0x2B1B, 0x2b1d), + range(0x1F170, 0x1f172), + range(0x1F191, 0x1f19b), + range(0x1F1E6, 0x1f200), + range(0x1F201, 0x1f203), + range(0x1F232, 0x1f23b), + range(0x1F250, 0x1f252), + range(0x1F300, 0x1f321), + range(0x1F324, 0x1f32d), + range(0x1F32D, 0x1f330), + range(0x1F330, 0x1f336), + range(0x1F337, 0x1f37d), + range(0x1F37E, 0x1f380), + range(0x1F380, 0x1f394), + range(0x1F396, 0x1f398), + range(0x1F399, 0x1f39c), + range(0x1F39E, 0x1f3a0), + range(0x1F3A0, 0x1f3c5), + range(0x1F3C6, 0x1f3cb), + range(0x1F3CB, 0x1f3cf), + range(0x1F3CF, 0x1f3d4), + range(0x1F3D4, 0x1f3e0), + range(0x1F3E0, 0x1f3f1), + range(0x1F3F3, 0x1f3f6), + range(0x1F3F8, 0x1f400), + range(0x1F400, 0x1f43f), + range(0x1F442, 0x1f4f8), + range(0x1F4F9, 0x1f4fd), + range(0x1F500, 0x1f53e), + range(0x1F549, 0x1f54b), + range(0x1F54B, 0x1f54f), + range(0x1F550, 0x1f568), + range(0x1F56F, 0x1f571), + range(0x1F573, 0x1f57a), + range(0x1F58A, 0x1f58e), + range(0x1F595, 0x1f597), + range(0x1F5B1, 0x1f5b3), + range(0x1F5C2, 0x1f5c5), + range(0x1F5D1, 0x1f5d4), + range(0x1F5DC, 0x1f5df), + range(0x1F5FB, 0x1f600), + range(0x1F601, 0x1f611), + range(0x1F612, 0x1f615), + range(0x1F61C, 0x1f61f), + range(0x1F620, 0x1f626), + range(0x1F626, 0x1f628), + range(0x1F628, 0x1f62c), + range(0x1F62E, 0x1f630), + range(0x1F630, 0x1f634), + range(0x1F635, 0x1f641), + range(0x1F641, 0x1f643), + range(0x1F643, 0x1f645), + range(0x1F645, 0x1f650), + range(0x1F680, 0x1f6c6), + range(0x1F6CB, 0x1f6d0), + range(0x1F6D1, 0x1f6d3), + range(0x1F6E0, 0x1f6e6), + range(0x1F6EB, 0x1f6ed), + range(0x1F6F4, 0x1f6f7), + range(0x1F6F7, 0x1f6f9), + range(0x1F910, 0x1f919), + range(0x1F919, 0x1f91f), + range(0x1F920, 0x1f928), + range(0x1F928, 0x1f930), + range(0x1F931, 0x1f933), + range(0x1F933, 0x1f93b), + range(0x1F93C, 0x1f93f), + range(0x1F940, 0x1f946), + range(0x1F947, 0x1f94c), + range(0x1F94D, 0x1f950), + range(0x1F950, 0x1f95f), + range(0x1F95F, 0x1f96c), + range(0x1F96C, 0x1f971), + range(0x1F973, 0x1f977), + range(0x1F97C, 0x1f980), + range(0x1F980, 0x1f985), + range(0x1F985, 0x1f992), + range(0x1F992, 0x1f998), + range(0x1F998, 0x1f9a3), + range(0x1F9B0, 0x1f9ba), + range(0x1F9C1, 0x1f9c3), + range(0x1F9D0, 0x1f9e7), + range(0x1F9E7, 0x1fa00), + [0x2328, 0x23cf, 0x24c2, 0x25b6, 0x25c0, 0x260e, 0x2611, 0x2618, 0x261d, 0x2620, 0x2626, + 0x262a, 0x2640, 0x2642, 0x2663, 0x2668, 0x267b, 0x2699, 0x26c8, 0x26ce, 0x26cf, + 0x26d1, 0x26fd, 0x2702, 0x2705, 0x270f, 0x2712, 0x2714, 0x2716, 0x271d, 0x2721, 0x2728, 0x2744, 0x2747, 0x274c, + 0x274e, 0x2757, 0x27a1, 0x27b0, 0x27bf, 0x2b50, 0x2b55, 0x3030, 0x303d, 0x3297, 0x3299, 0x1f004, 0x1f0cf, 0x1f17e, + 0x1f17f, 0x1f18e, 0x1f21a, 0x1f22f, 0x1f321, 0x1f336, 0x1f37d, 0x1f3c5, 0x1f3f7, 0x1f43f, 0x1f440, 0x1f441, 0x1f4f8, + 0x1f4fd, 0x1f4ff, 0x1f57a, 0x1f587, 0x1f590, 0x1f5a4, 0x1f5a5, 0x1f5a8, 0x1f5bc, 0x1f5e1, 0x1f5e3, 0x1f5e8, 0x1f5ef, + 0x1f5f3, 0x1f5fa, 0x1f600, 0x1f611, 0x1f615, 0x1f616, 0x1f617, 0x1f618, 0x1f619, 0x1f61a, 0x1f61b, 0x1f61f, 0x1f62c, + 0x1f62d, 0x1f634, 0x1f6d0, 0x1f6e9, 0x1f6f0, 0x1f6f3, 0x1f6f9, 0x1f91f, 0x1f930, 0x1f94c, 0x1f97a, 0x1f9c0] + ) + if any(chr(emoji) in body for emoji in emoji_list): + return True + return False + + def _is_bot_pinged(self, values): + odoobot_id = self.env['ir.model.data'].xmlid_to_res_id("base.partner_root") + return odoobot_id in values.get('partner_ids', []) + + def _is_bot_in_private_channel(self, record): + odoobot_id = self.env['ir.model.data'].xmlid_to_res_id("base.partner_root") + if record._name == 'mail.channel' and record.channel_type == 'chat': + return odoobot_id in record.with_context(active_test=False).channel_partner_ids.ids + return False + + def _is_help_requested(self, body): + """Returns whether a message linking to the documentation and videos + should be sent back to the user. + """ + return any(token in body for token in ['help', _('help'), '?']) or self.env.user.odoobot_failed diff --git a/addons/mail_bot/models/mail_channel.py b/addons/mail_bot/models/mail_channel.py new file mode 100644 index 00000000..a5e9a60a --- /dev/null +++ b/addons/mail_bot/models/mail_channel.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models, _ + + +class Channel(models.Model): + _inherit = 'mail.channel' + + def _execute_command_help(self, **kwargs): + super(Channel, self)._execute_command_help(**kwargs) + self.env['mail.bot']._apply_logic(self, kwargs, command="help") # kwargs are not usefull but... + + @api.model + def init_odoobot(self): + if self.env.user.odoobot_state in [False, 'not_initialized']: + odoobot_id = self.env['ir.model.data'].xmlid_to_res_id("base.partner_root") + channel_info = self.channel_get([odoobot_id]) + channel = self.browse(channel_info['id']) + message = _("Hello,<br/>Odoo's chat helps employees collaborate efficiently. I'm here to help you discover its features.<br/><b>Try to send me an emoji</b> <span class=\"o_odoobot_command\">:)</span>") + channel.sudo().message_post(body=message, author_id=odoobot_id, message_type="comment", subtype_xmlid="mail.mt_comment") + self.env.user.odoobot_state = 'onboarding_emoji' + return channel diff --git a/addons/mail_bot/models/mail_thread.py b/addons/mail_bot/models/mail_thread.py new file mode 100644 index 00000000..e1be43e7 --- /dev/null +++ b/addons/mail_bot/models/mail_thread.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models + + +class MailThread(models.AbstractModel): + _inherit = 'mail.thread' + + def _message_post_after_hook(self, message, msg_vals): + self.env['mail.bot']._apply_logic(self, msg_vals) + return super(MailThread, self)._message_post_after_hook(message, msg_vals) diff --git a/addons/mail_bot/models/res_users.py b/addons/mail_bot/models/res_users.py new file mode 100644 index 00000000..6b49a321 --- /dev/null +++ b/addons/mail_bot/models/res_users.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields + +class Users(models.Model): + _inherit = 'res.users' + + odoobot_state = fields.Selection( + [ + ('not_initialized', 'Not initialized'), + ('onboarding_emoji', 'Onboarding emoji'), + ('onboarding_attachement', 'Onboarding attachement'), + ('onboarding_command', 'Onboarding command'), + ('onboarding_ping', 'Onboarding ping'), + ('idle', 'Idle'), + ('disabled', 'Disabled'), + ], string="OdooBot Status", readonly=True, required=False) # keep track of the state: correspond to the code of the last message sent + odoobot_failed = fields.Boolean(readonly=True) + + def __init__(self, pool, cr): + """ Override of __init__ to add access rights. + Access rights are disabled by default, but allowed + on some specific fields defined in self.SELF_{READ/WRITE}ABLE_FIELDS. + """ + init_res = super(Users, self).__init__(pool, cr) + # duplicate list to avoid modifying the original reference + type(self).SELF_READABLE_FIELDS = type(self).SELF_READABLE_FIELDS + ['odoobot_state'] + return init_res diff --git a/addons/mail_bot/static/src/bugfix/bugfix.js b/addons/mail_bot/static/src/bugfix/bugfix.js new file mode 100644 index 00000000..bd676eb1 --- /dev/null +++ b/addons/mail_bot/static/src/bugfix/bugfix.js @@ -0,0 +1,10 @@ +/** + * This file allows introducing new JS modules without contaminating other files. + * This is useful when bug fixing requires adding such JS modules in stable + * versions of Odoo. Any module that is defined in this file should be isolated + * in its own file in master. + */ +odoo.define('mail_bot/static/src/bugfix/bugfix.js', function (require) { +'use strict'; + +}); diff --git a/addons/mail_bot/static/src/bugfix/bugfix.scss b/addons/mail_bot/static/src/bugfix/bugfix.scss new file mode 100644 index 00000000..c4272e52 --- /dev/null +++ b/addons/mail_bot/static/src/bugfix/bugfix.scss @@ -0,0 +1,6 @@ +/** +* This file allows introducing new styles without contaminating other files. +* This is useful when bug fixing requires adding new components for instance in +* stable versions of Odoo. Any style that is defined in this file should be isolated +* in its own file in master. +*/ diff --git a/addons/mail_bot/static/src/bugfix/bugfix.xml b/addons/mail_bot/static/src/bugfix/bugfix.xml new file mode 100644 index 00000000..c17906f7 --- /dev/null +++ b/addons/mail_bot/static/src/bugfix/bugfix.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<templates xml:space="preserve"> + +<!-- + This file allows introducing new static templates without contaminating other files. + This is useful when bug fixing requires adding new components for instance in stable + versions of Odoo. Any template that is defined in this file should be isolated + in its own file in master. +--> + +</templates> diff --git a/addons/mail_bot/static/src/bugfix/bugfix_tests.js b/addons/mail_bot/static/src/bugfix/bugfix_tests.js new file mode 100644 index 00000000..3aa5456b --- /dev/null +++ b/addons/mail_bot/static/src/bugfix/bugfix_tests.js @@ -0,0 +1,18 @@ +odoo.define('mail_bot/static/src/bugfix/bugfix_tests.js', function (require) { +'use strict'; + +/** + * This file allows introducing new QUnit test modules without contaminating + * other test files. This is useful when bug fixing requires adding new + * components for instance in stable versions of Odoo. Any test that is defined + * in this file should be isolated in its own file in master. + */ +QUnit.module('mail_bot', {}, function () { +QUnit.module('bugfix', {}, function () { +QUnit.module('bugfix_tests.js', { + +}); +}); +}); + +}); diff --git a/addons/mail_bot/static/src/models/messaging/messaging.js b/addons/mail_bot/static/src/models/messaging/messaging.js new file mode 100644 index 00000000..58923e8e --- /dev/null +++ b/addons/mail_bot/static/src/models/messaging/messaging.js @@ -0,0 +1,13 @@ +odoo.define('mail_bot/static/src/models/messaging/messaging.js', function (require) { +'use strict'; + +const { registerInstancePatchModel } = require('mail/static/src/model/model_core.js'); + +registerInstancePatchModel('mail.messaging', 'mail_bot/static/src/models/messaging/messaging.js', { + //---------------------------------------------------------------------- + // Public + //---------------------------------------------------------------------- + +}); + +}); diff --git a/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer.js b/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer.js new file mode 100644 index 00000000..9b06fbba --- /dev/null +++ b/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer.js @@ -0,0 +1,37 @@ +odoo.define('mail_bot/static/src/models/messaging_initializer/messaging_initializer.js', function (require) { +'use strict'; + +const { registerInstancePatchModel } = require('mail/static/src/model/model_core.js'); + +registerInstancePatchModel('mail.messaging_initializer', 'mail_bot/static/src/models/messaging_initializer/messaging_initializer.js', { + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @private + */ + async _initializeOdooBot() { + const data = await this.async(() => this.env.services.rpc({ + model: 'mail.channel', + method: 'init_odoobot', + })); + if (!data) { + return; + } + this.env.session.odoobot_initialized = true; + }, + + /** + * @override + */ + async start() { + await this.async(() => this._super()); + + if ('odoobot_initialized' in this.env.session && !this.env.session.odoobot_initialized) { + this._initializeOdooBot(); + } + }, +}); + +}); diff --git a/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer_tests.js b/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer_tests.js new file mode 100644 index 00000000..bfb97067 --- /dev/null +++ b/addons/mail_bot/static/src/models/messaging_initializer/messaging_initializer_tests.js @@ -0,0 +1,56 @@ +odoo.define('mail_bot/static/src/models/messaging_initializer/messaging_initializer_tests.js', function (require) { +"use strict"; + +const { afterEach, beforeEach, start } = require('mail/static/src/utils/test_utils.js'); + +QUnit.module('mail_bot', {}, function () { +QUnit.module('models', {}, function () { +QUnit.module('messaging_initializer', {}, function () { +QUnit.module('messaging_initializer_tests.js', { + beforeEach() { + beforeEach(this); + + this.start = async params => { + const { env, widget } = await start(Object.assign({}, params, { + data: this.data, + })); + this.env = env; + this.widget = widget; + }; + }, + afterEach() { + afterEach(this); + }, +}); + + +QUnit.test('OdooBot initialized at init', async function (assert) { + // TODO this test should be completed in combination with + // implementing _mockMailChannelInitOdooBot task-2300480 + assert.expect(2); + + await this.start({ + env: { + session: { + odoobot_initialized: false, + }, + }, + async mockRPC(route, args) { + if (args.method === 'init_odoobot') { + assert.step('init_odoobot'); + } + return this._super(...arguments); + }, + }); + + assert.verifySteps( + ['init_odoobot'], + "should have initialized OdooBot at init" + ); +}); + +}); +}); +}); + +}); diff --git a/addons/mail_bot/static/src/scss/odoobot_style.scss b/addons/mail_bot/static/src/scss/odoobot_style.scss new file mode 100644 index 00000000..aa5e187b --- /dev/null +++ b/addons/mail_bot/static/src/scss/odoobot_style.scss @@ -0,0 +1,8 @@ +.o_odoobot_command { + background-color: lightgray; + border-radius: 4px; + padding: 2px; + padding-left: 10px; + padding-right: 10px; + font-weight: bold; +} diff --git a/addons/mail_bot/static/tests/helpers/mock_server.js b/addons/mail_bot/static/tests/helpers/mock_server.js new file mode 100644 index 00000000..63de6c99 --- /dev/null +++ b/addons/mail_bot/static/tests/helpers/mock_server.js @@ -0,0 +1,36 @@ +odoo.define('mail_bot/static/tests/helpers/mock_server.js', function (require) { +"use strict"; + +const MockServer = require('web.MockServer'); + +MockServer.include({ + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + */ + async _performRpc(route, args) { + if (args.model === 'mail.channel' && args.method === 'init_odoobot') { + return this._mockMailChannelInitOdooBot(); + } + return this._super(...arguments); + }, + + //-------------------------------------------------------------------------- + // Private Mocked Methods + //-------------------------------------------------------------------------- + + /** + * Simulates `init_odoobot` on `mail.channel`. + * + * @private + */ + _mockMailChannelInitOdooBot() { + // TODO implement this mock task-2300480 + // and improve test "OdooBot initialized after 2 minutes" + }, +}); + +}); diff --git a/addons/mail_bot/views/assets.xml b/addons/mail_bot/views/assets.xml new file mode 100644 index 00000000..e41f3ed6 --- /dev/null +++ b/addons/mail_bot/views/assets.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <template id="assets_backend" name="mailbot assets" inherit_id="web.assets_backend"> + <xpath expr="script[last()]" position="after"> + <script type="text/javascript" src="/mail_bot/static/src/bugfix/bugfix.js"></script> + <script type="text/javascript" src="/mail_bot/static/src/models/messaging_initializer/messaging_initializer.js"></script> + </xpath> + <xpath expr="link[last()]" position="after"> + <link rel="stylesheet" type="text/scss" href="/mail_bot/static/src/scss/odoobot_style.scss"/> + <link rel="stylesheet" type="text/scss" href="/mail_bot/static/src/bugfix/bugfix.scss"/> + </xpath> + </template> + + <template id="tests_assets" name="mail_bot tests assets" inherit_id="web.tests_assets"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/mail_bot/static/tests/helpers/mock_server.js"/> + </xpath> + </template> + + <template id="qunit_suite" name="mailbot_tests" inherit_id="web.qunit_suite_tests"> + <xpath expr="." position="inside"> + <script type="text/javascript" src="/mail_bot/static/src/bugfix/bugfix_tests.js"></script> + <script type="text/javascript" src="/mail_bot/static/src/models/messaging_initializer/messaging_initializer_tests.js"></script> + </xpath> + </template> + </data> +</odoo> diff --git a/addons/mail_bot/views/res_users_views.xml b/addons/mail_bot/views/res_users_views.xml new file mode 100644 index 00000000..e714ff6b --- /dev/null +++ b/addons/mail_bot/views/res_users_views.xml @@ -0,0 +1,30 @@ +<?xml version="1.0"?> +<odoo><data> + <!-- Update Preferences form !--> + <record id="res_users_view_form_preferences" model="ir.ui.view"> + <field name="name">res.users.view.form.preferences.mail_bot</field> + <field name="model">res.users</field> + <field name="inherit_id" ref="mail.view_users_form_simple_modif_mail"/> + <field name="arch" type="xml"> + <data> + <field name="notification_type" position="after"> + <field name="odoobot_state" readonly="0" groups="base.group_no_one"/> + </field> + </data> + </field> + </record> + + <!-- Update user form !--> + <record id="res_users_view_form" model="ir.ui.view"> + <field name="name">res.users.view.form.mail_bot</field> + <field name="model">res.users</field> + <field name="inherit_id" ref="mail.view_users_form_mail"/> + <field name="arch" type="xml"> + <data> + <field name="signature" position="before"> + <field name="odoobot_state" readonly="0" groups="base.group_no_one"/> + </field> + </data> + </field> + </record> +</data></odoo> |
