summaryrefslogtreecommitdiff
path: root/addons/crm_sms
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/crm_sms
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/crm_sms')
-rw-r--r--addons/crm_sms/__init__.py4
-rw-r--r--addons/crm_sms/__manifest__.py20
-rw-r--r--addons/crm_sms/i18n/ar.po52
-rw-r--r--addons/crm_sms/i18n/bg.po53
-rw-r--r--addons/crm_sms/i18n/bn.po51
-rw-r--r--addons/crm_sms/i18n/ca.po53
-rw-r--r--addons/crm_sms/i18n/ckb.po51
-rw-r--r--addons/crm_sms/i18n/crm_sms.pot47
-rw-r--r--addons/crm_sms/i18n/cs.po54
-rw-r--r--addons/crm_sms/i18n/da.po55
-rw-r--r--addons/crm_sms/i18n/de.po53
-rw-r--r--addons/crm_sms/i18n/el.po52
-rw-r--r--addons/crm_sms/i18n/eo.po47
-rw-r--r--addons/crm_sms/i18n/es.po53
-rw-r--r--addons/crm_sms/i18n/es_MX.po52
-rw-r--r--addons/crm_sms/i18n/et.po53
-rw-r--r--addons/crm_sms/i18n/eu.po53
-rw-r--r--addons/crm_sms/i18n/fa.po53
-rw-r--r--addons/crm_sms/i18n/fi.po54
-rw-r--r--addons/crm_sms/i18n/fr.po55
-rw-r--r--addons/crm_sms/i18n/he.po52
-rw-r--r--addons/crm_sms/i18n/hi.po47
-rw-r--r--addons/crm_sms/i18n/hr.po53
-rw-r--r--addons/crm_sms/i18n/hu.po52
-rw-r--r--addons/crm_sms/i18n/id.po53
-rw-r--r--addons/crm_sms/i18n/it.po51
-rw-r--r--addons/crm_sms/i18n/ja.po53
-rw-r--r--addons/crm_sms/i18n/ka.po51
-rw-r--r--addons/crm_sms/i18n/km.po52
-rw-r--r--addons/crm_sms/i18n/ko.po53
-rw-r--r--addons/crm_sms/i18n/lb.po27
-rw-r--r--addons/crm_sms/i18n/lt.po55
-rw-r--r--addons/crm_sms/i18n/lv.po52
-rw-r--r--addons/crm_sms/i18n/mn.po52
-rw-r--r--addons/crm_sms/i18n/nb.po52
-rw-r--r--addons/crm_sms/i18n/nl.po52
-rw-r--r--addons/crm_sms/i18n/pl.po53
-rw-r--r--addons/crm_sms/i18n/pt.po53
-rw-r--r--addons/crm_sms/i18n/pt_BR.po55
-rw-r--r--addons/crm_sms/i18n/ro.po53
-rw-r--r--addons/crm_sms/i18n/ru.po54
-rw-r--r--addons/crm_sms/i18n/si.po47
-rw-r--r--addons/crm_sms/i18n/sk.po53
-rw-r--r--addons/crm_sms/i18n/sl.po52
-rw-r--r--addons/crm_sms/i18n/sv.po52
-rw-r--r--addons/crm_sms/i18n/th.po52
-rw-r--r--addons/crm_sms/i18n/tr.po54
-rw-r--r--addons/crm_sms/i18n/uk.po51
-rw-r--r--addons/crm_sms/i18n/ur.po47
-rw-r--r--addons/crm_sms/i18n/vi.po53
-rw-r--r--addons/crm_sms/i18n/zh_CN.po55
-rw-r--r--addons/crm_sms/i18n/zh_TW.po51
-rw-r--r--addons/crm_sms/models/__init__.py4
-rw-r--r--addons/crm_sms/models/crm_lead.py14
-rw-r--r--addons/crm_sms/security/ir.model.access.csv2
-rw-r--r--addons/crm_sms/security/sms_security.xml10
-rw-r--r--addons/crm_sms/tests/__init__.py3
-rw-r--r--addons/crm_sms/tests/test_crm_lead.py29
-rw-r--r--addons/crm_sms/views/crm_lead_views.xml44
59 files changed, 2713 insertions, 0 deletions
diff --git a/addons/crm_sms/__init__.py b/addons/crm_sms/__init__.py
new file mode 100644
index 00000000..dc5e6b69
--- /dev/null
+++ b/addons/crm_sms/__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/crm_sms/__manifest__.py b/addons/crm_sms/__manifest__.py
new file mode 100644
index 00000000..c81bc79e
--- /dev/null
+++ b/addons/crm_sms/__manifest__.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'SMS in CRM',
+ 'version': '1.0',
+ 'category': 'Sales/CRM',
+ 'summary': 'Add SMS capabilities to CRM',
+ 'description': "",
+ 'depends': ['crm', 'sms'],
+ 'data': [
+ 'views/crm_lead_views.xml',
+ 'security/ir.model.access.csv',
+ 'security/sms_security.xml',
+ ],
+ 'installable': True,
+ 'application': False,
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}
diff --git a/addons/crm_sms/i18n/ar.po b/addons/crm_sms/i18n/ar.po
new file mode 100644
index 00000000..6114ffcb
--- /dev/null
+++ b/addons/crm_sms/i18n/ar.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "ترشيح/فرصة"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/bg.po b/addons/crm_sms/i18n/bg.po
new file mode 100644
index 00000000..28cb734b
--- /dev/null
+++ b/addons/crm_sms/i18n/bg.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020
+# Ивайло Малинов <iv.malinov@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Лийд / Възможност"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/bn.po b/addons/crm_sms/i18n/bn.po
new file mode 100644
index 00000000..03ae1b68
--- /dev/null
+++ b/addons/crm_sms/i18n/bn.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "লিড / সুযোগ"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/ca.po b/addons/crm_sms/i18n/ca.po
new file mode 100644
index 00000000..0b6d7ef5
--- /dev/null
+++ b/addons/crm_sms/i18n/ca.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Iniciativa/Oportunitat"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/ckb.po b/addons/crm_sms/i18n/ckb.po
new file mode 100644
index 00000000..35305f0b
--- /dev/null
+++ b/addons/crm_sms/i18n/ckb.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "کورتەنامە"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "ناردنی کورتەنامەی دەق"
diff --git a/addons/crm_sms/i18n/crm_sms.pot b/addons/crm_sms/i18n/crm_sms.pot
new file mode 100644
index 00000000..e2f56977
--- /dev/null
+++ b/addons/crm_sms/i18n/crm_sms.pot
@@ -0,0 +1,47 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-01 07:28+0000\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/cs.po b/addons/crm_sms/i18n/cs.po
new file mode 100644
index 00000000..a72cb7bd
--- /dev/null
+++ b/addons/crm_sms/i18n/cs.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Jiří Podhorecký, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potenciální zákazník / příležitost"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Odeslat SMS textovou zprávu"
diff --git a/addons/crm_sms/i18n/da.po b/addons/crm_sms/i18n/da.po
new file mode 100644
index 00000000..516699c8
--- /dev/null
+++ b/addons/crm_sms/i18n/da.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# Sanne Kristensen <sanne@vkdata.dk>, 2020
+# Walther Barnett <wba@miracle.dk>, 2020
+# Mads Søndergaard, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Mads Søndergaard, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Kundeemne/Salgsmulighed"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Send SMS tekst besked"
diff --git a/addons/crm_sms/i18n/de.po b/addons/crm_sms/i18n/de.po
new file mode 100644
index 00000000..3659ccc4
--- /dev/null
+++ b/addons/crm_sms/i18n/de.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Andi, 2020
+# Leon Grill <leg@odoo.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Leon Grill <leg@odoo.com>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Interessent / Chance"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "SMS-Textnachricht senden"
diff --git a/addons/crm_sms/i18n/el.po b/addons/crm_sms/i18n/el.po
new file mode 100644
index 00000000..b1160d08
--- /dev/null
+++ b/addons/crm_sms/i18n/el.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Alexandros Kapetanios <alexandros@gnugr.org>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Σύσταση/Ευκαιρία"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Αποστολή κειμένου SMS"
diff --git a/addons/crm_sms/i18n/eo.po b/addons/crm_sms/i18n/eo.po
new file mode 100644
index 00000000..79c4d116
--- /dev/null
+++ b/addons/crm_sms/i18n/eo.po
@@ -0,0 +1,47 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/es.po b/addons/crm_sms/i18n/es.po
new file mode 100644
index 00000000..9cb732c1
--- /dev/null
+++ b/addons/crm_sms/i18n/es.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Jon Perez <jop@odoo.com>, 2020
+# Martin Trigaux, 2020
+# Braulio D. López Vázquez <bdl@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2021\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Oportunidad"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Envía mensaje de texto SMS"
diff --git a/addons/crm_sms/i18n/es_MX.po b/addons/crm_sms/i18n/es_MX.po
new file mode 100644
index 00000000..90fe7be5
--- /dev/null
+++ b/addons/crm_sms/i18n/es_MX.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# 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 saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nombre en pantalla"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Oportunidad"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Envíe mensaje de texto SMS"
diff --git a/addons/crm_sms/i18n/et.po b/addons/crm_sms/i18n/et.po
new file mode 100644
index 00000000..db3d1005
--- /dev/null
+++ b/addons/crm_sms/i18n/et.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# atriine <triine@avalah.ee>, 2020
+# Eneli Õigus <enelioigus@gmail.com>, 2020
+# Andre Roomet <andreroomet@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Andre Roomet <andreroomet@gmail.com>, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud (millal)"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Müügivihje/võimalus"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Saada SMS tekstsõnum"
diff --git a/addons/crm_sms/i18n/eu.po b/addons/crm_sms/i18n/eu.po
new file mode 100644
index 00000000..f7b7998b
--- /dev/null
+++ b/addons/crm_sms/i18n/eu.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Eneko <eastigarraga@codesyntax.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Ekimena/Aukera"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/fa.po b/addons/crm_sms/i18n/fa.po
new file mode 100644
index 00000000..8a8b6cc5
--- /dev/null
+++ b/addons/crm_sms/i18n/fa.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Hamed Mohammadi <hamed@dehongi.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "سرنخ / فرصت"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/fi.po b/addons/crm_sms/i18n/fi.po
new file mode 100644
index 00000000..9690ac43
--- /dev/null
+++ b/addons/crm_sms/i18n/fi.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020
+# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Liidi/mahdollisuus"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Lähetä tekstiviesti"
diff --git a/addons/crm_sms/i18n/fr.po b/addons/crm_sms/i18n/fr.po
new file mode 100644
index 00000000..12045a49
--- /dev/null
+++ b/addons/crm_sms/i18n/fr.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Nicolas Roussey <nro@odoo.com>, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Gilles Mangin <gilles.mangin@phidias.fr>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Piste/opportunité"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Envoyer un SMS"
diff --git a/addons/crm_sms/i18n/he.po b/addons/crm_sms/i18n/he.po
new file mode 100644
index 00000000..ab390825
--- /dev/null
+++ b/addons/crm_sms/i18n/he.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "שם תצוגה"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "מזהה"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "שונה לאחרונה ב - "
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "ליד/הזדמנות"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "שלח הודעת SMS"
diff --git a/addons/crm_sms/i18n/hi.po b/addons/crm_sms/i18n/hi.po
new file mode 100644
index 00000000..a0aa9bf9
--- /dev/null
+++ b/addons/crm_sms/i18n/hi.po
@@ -0,0 +1,47 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/hr.po b/addons/crm_sms/i18n/hr.po
new file mode 100644
index 00000000..55bed14f
--- /dev/null
+++ b/addons/crm_sms/i18n/hr.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2020
+# Bole <bole@dajmi5.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Bole <bole@dajmi5.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potencijal/prilika"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Pošalji SMS poruku"
diff --git a/addons/crm_sms/i18n/hu.po b/addons/crm_sms/i18n/hu.po
new file mode 100644
index 00000000..396fe44f
--- /dev/null
+++ b/addons/crm_sms/i18n/hu.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Érdeklődés/Lehetőség"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "SMS küldése"
diff --git a/addons/crm_sms/i18n/id.po b/addons/crm_sms/i18n/id.po
new file mode 100644
index 00000000..64fd1158
--- /dev/null
+++ b/addons/crm_sms/i18n/id.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Ryanto The <ry.the77@gmail.com>, 2020
+# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Prospek/Peluang"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Kirim Pesan Teks SMS"
diff --git a/addons/crm_sms/i18n/it.po b/addons/crm_sms/i18n/it.po
new file mode 100644
index 00000000..3af2c195
--- /dev/null
+++ b/addons/crm_sms/i18n/it.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Sergio Zanchetta <primes2h@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Contatto/Opportunità"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Invia messaggio SMS"
diff --git a/addons/crm_sms/i18n/ja.po b/addons/crm_sms/i18n/ja.po
new file mode 100644
index 00000000..15ae2337
--- /dev/null
+++ b/addons/crm_sms/i18n/ja.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020
+# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020
+# Noma Yuki, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "リード / 案件"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "SMSテキストメッセージを送信"
diff --git a/addons/crm_sms/i18n/ka.po b/addons/crm_sms/i18n/ka.po
new file mode 100644
index 00000000..aee1e397
--- /dev/null
+++ b/addons/crm_sms/i18n/ka.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/km.po b/addons/crm_sms/i18n/km.po
new file mode 100644
index 00000000..fa526b3a
--- /dev/null
+++ b/addons/crm_sms/i18n/km.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Leads/ឱកាស"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/ko.po b/addons/crm_sms/i18n/ko.po
new file mode 100644
index 00000000..40053d4a
--- /dev/null
+++ b/addons/crm_sms/i18n/ko.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# JH CHOI <hwangtog@gmail.com>, 2020
+# Linkup <link-up@naver.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Linkup <link-up@naver.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "영업제안/영업기회"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "SMS 문자메시지 전송"
diff --git a/addons/crm_sms/i18n/lb.po b/addons/crm_sms/i18n/lb.po
new file mode 100644
index 00000000..6d0fb841
--- /dev/null
+++ b/addons/crm_sms/i18n/lb.po
@@ -0,0 +1,27 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+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:09+0000\n"
+"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/lt.po b/addons/crm_sms/i18n/lt.po
new file mode 100644
index 00000000..98ac9767
--- /dev/null
+++ b/addons/crm_sms/i18n/lt.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Andrius Laukavičius <andrius@focusate.eu>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+# Jonas Zinkevicius <jozi@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Iniciatyva/Galimybė"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Siųsti SMS žinutę"
diff --git a/addons/crm_sms/i18n/lv.po b/addons/crm_sms/i18n/lv.po
new file mode 100644
index 00000000..dabab36f
--- /dev/null
+++ b/addons/crm_sms/i18n/lv.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Arnis Putniņš <arnis@allegro.lv>, 2020
+# ievaputnina <ievai.putninai@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Attēlotais nosaukums"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Pēdējoreiz modificēts"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Opportunity"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/mn.po b/addons/crm_sms/i18n/mn.po
new file mode 100644
index 00000000..7320ae5f
--- /dev/null
+++ b/addons/crm_sms/i18n/mn.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Uuganbayar Batbaatar <uuganaaub33@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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Сэжим/Боломж"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "Мессеж"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/nb.po b/addons/crm_sms/i18n/nb.po
new file mode 100644
index 00000000..afb40c3e
--- /dev/null
+++ b/addons/crm_sms/i18n/nb.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/mulighet"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Send SMS"
diff --git a/addons/crm_sms/i18n/nl.po b/addons/crm_sms/i18n/nl.po
new file mode 100644
index 00000000..d0566fdc
--- /dev/null
+++ b/addons/crm_sms/i18n/nl.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Erwin van der Ploeg <erwin@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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Verkoopkans"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Verzend SMS tekstbericht"
diff --git a/addons/crm_sms/i18n/pl.po b/addons/crm_sms/i18n/pl.po
new file mode 100644
index 00000000..366b6626
--- /dev/null
+++ b/addons/crm_sms/i18n/pl.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+# Piotr Strębski <strebski@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Sygnały/Szanse"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Wyślij wiadomość tekstową SMS"
diff --git a/addons/crm_sms/i18n/pt.po b/addons/crm_sms/i18n/pt.po
new file mode 100644
index 00000000..3716f28f
--- /dev/null
+++ b/addons/crm_sms/i18n/pt.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Prospecto / Oportunidade"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/pt_BR.po b/addons/crm_sms/i18n/pt_BR.po
new file mode 100644
index 00000000..00420f47
--- /dev/null
+++ b/addons/crm_sms/i18n/pt_BR.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020
+# Rafael H L Moretti <rafael.moretti@gmail.com>, 2020
+# Mateus Lopes <mateus1@gmail.com>, 2020
+# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020
+# Keli Brugalli <kbr@odoo.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Keli Brugalli <kbr@odoo.com>, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Lead/Oportunidade"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Enviar mensagem de texto SMS"
diff --git a/addons/crm_sms/i18n/ro.po b/addons/crm_sms/i18n/ro.po
new file mode 100644
index 00000000..c1bf8acb
--- /dev/null
+++ b/addons/crm_sms/i18n/ro.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020
+# Foldi Robert <foldirobert@nexterp.ro>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Pista/Oportunitate"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Trimiteți mesaj SMS"
diff --git a/addons/crm_sms/i18n/ru.po b/addons/crm_sms/i18n/ru.po
new file mode 100644
index 00000000..7c71f3aa
--- /dev/null
+++ b/addons/crm_sms/i18n/ru.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Vasiliy Korobatov <korobatov@gmail.com>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+# ILMIR <karamov@it-projects.info>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: ILMIR <karamov@it-projects.info>, 2021\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Инициатива / возможность"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "СМС"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Отправить СМС сообщение"
diff --git a/addons/crm_sms/i18n/si.po b/addons/crm_sms/i18n/si.po
new file mode 100644
index 00000000..7bf86145
--- /dev/null
+++ b/addons/crm_sms/i18n/si.po
@@ -0,0 +1,47 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/sk.po b/addons/crm_sms/i18n/sk.po
new file mode 100644
index 00000000..790c91a8
--- /dev/null
+++ b/addons/crm_sms/i18n/sk.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Adam Levrinc <adam.levrinc@26house.com>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Potenciálna príležitosť / obchodný prípad"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Poslať SMS textovú správu"
diff --git a/addons/crm_sms/i18n/sl.po b/addons/crm_sms/i18n/sl.po
new file mode 100644
index 00000000..2644e944
--- /dev/null
+++ b/addons/crm_sms/i18n/sl.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: matjaz k <matjaz@mentis.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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Indic/Priložnost"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/sv.po b/addons/crm_sms/i18n/sv.po
new file mode 100644
index 00000000..e10e5f66
--- /dev/null
+++ b/addons/crm_sms/i18n/sv.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Anders Wallenquist <anders.wallenquist@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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Kundämnen/affärsmöjligheter"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/th.po b/addons/crm_sms/i18n/th.po
new file mode 100644
index 00000000..30797971
--- /dev/null
+++ b/addons/crm_sms/i18n/th.po
@@ -0,0 +1,52 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Somchart Jabsung <jabsung.s@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Somchart Jabsung <jabsung.s@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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "เป้าหมาย / โอกาส"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/tr.po b/addons/crm_sms/i18n/tr.po
new file mode 100644
index 00000000..00c8434c
--- /dev/null
+++ b/addons/crm_sms/i18n/tr.po
@@ -0,0 +1,54 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+# Yedigen, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Yedigen, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Aday/Fırsat"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "SMS Metin Mesajı Gönderin"
diff --git a/addons/crm_sms/i18n/uk.po b/addons/crm_sms/i18n/uk.po
new file mode 100644
index 00000000..8839afab
--- /dev/null
+++ b/addons/crm_sms/i18n/uk.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Лід/Нагода"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Надіслати SMS-повідомлення"
diff --git a/addons/crm_sms/i18n/ur.po b/addons/crm_sms/i18n/ur.po
new file mode 100644
index 00000000..616f24b6
--- /dev/null
+++ b/addons/crm_sms/i18n/ur.po
@@ -0,0 +1,47 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr ""
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr ""
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr ""
diff --git a/addons/crm_sms/i18n/vi.po b/addons/crm_sms/i18n/vi.po
new file mode 100644
index 00000000..3e54ca6e
--- /dev/null
+++ b/addons/crm_sms/i18n/vi.po
@@ -0,0 +1,53 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Duy BQ <duybq86@gmail.com>, 2020
+# Trần Hà <tranthuha13590@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "Tiềm năng/Cơ hội"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "Send SMS Text Message"
diff --git a/addons/crm_sms/i18n/zh_CN.po b/addons/crm_sms/i18n/zh_CN.po
new file mode 100644
index 00000000..1daf0d62
--- /dev/null
+++ b/addons/crm_sms/i18n/zh_CN.po
@@ -0,0 +1,55 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020
+# Felix Yuen <fyu@odoo.com>, 2020
+# Jeanphy <hzh0292@qq.com>, 2020
+# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+0000\n"
+"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "线索/商机"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "短信"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "发送文本短信"
diff --git a/addons/crm_sms/i18n/zh_TW.po b/addons/crm_sms/i18n/zh_TW.po
new file mode 100644
index 00000000..7b002c0f
--- /dev/null
+++ b/addons/crm_sms/i18n/zh_TW.po
@@ -0,0 +1,51 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * crm_sms
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:11+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: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead__id
+msgid "ID"
+msgstr "ID"
+
+#. module: crm_sms
+#: model:ir.model.fields,field_description:crm_sms.field_crm_lead____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
+
+#. module: crm_sms
+#: model:ir.model,name:crm_sms.model_crm_lead
+msgid "Lead/Opportunity"
+msgstr "線索/商機"
+
+#. module: crm_sms
+#: model_terms:ir.ui.view,arch_db:crm_sms.crm_lead_view_list_activities
+msgid "SMS"
+msgstr "SMS簡訊"
+
+#. module: crm_sms
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_multi
+#: model:ir.actions.act_window,name:crm_sms.crm_lead_act_window_sms_composer_single
+msgid "Send SMS Text Message"
+msgstr "傳送簡訊"
diff --git a/addons/crm_sms/models/__init__.py b/addons/crm_sms/models/__init__.py
new file mode 100644
index 00000000..00140f99
--- /dev/null
+++ b/addons/crm_sms/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import crm_lead
diff --git a/addons/crm_sms/models/crm_lead.py b/addons/crm_sms/models/crm_lead.py
new file mode 100644
index 00000000..76f7301c
--- /dev/null
+++ b/addons/crm_sms/models/crm_lead.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 CrmLead(models.Model):
+ _inherit = 'crm.lead'
+
+ def _sms_get_number_fields(self):
+ """ This method returns the fields to use to find the number to use to
+ send an SMS on a record. """
+ # TDE FIXME: to be cleaned in 14.4+ as it conflicts with _phone_get_number_fields
+ return ['mobile', 'phone']
diff --git a/addons/crm_sms/security/ir.model.access.csv b/addons/crm_sms/security/ir.model.access.csv
new file mode 100644
index 00000000..f94b6f7f
--- /dev/null
+++ b/addons/crm_sms/security/ir.model.access.csv
@@ -0,0 +1,2 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_sms_template_sale_manager,access.sms.template.sale.manager,sms.model_sms_template,sales_team.group_sale_manager,1,1,1,1
diff --git a/addons/crm_sms/security/sms_security.xml b/addons/crm_sms/security/sms_security.xml
new file mode 100644
index 00000000..b29ed067
--- /dev/null
+++ b/addons/crm_sms/security/sms_security.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo noupdate="1">
+ <record id="ir_rule_sms_template_sale_manager" model="ir.rule">
+ <field name="name">SMS Template: sale manager CUD on opportunity / partner templates</field>
+ <field name="model_id" ref="sms.model_sms_template"/>
+ <field name="groups" eval="[(4, ref('sales_team.group_sale_manager'))]"/>
+ <field name="domain_force">[('model_id.model', 'in', ('crm.lead', 'res.partner'))]</field>
+ <field name="perm_read" eval="False"/>
+ </record>
+</odoo>
diff --git a/addons/crm_sms/tests/__init__.py b/addons/crm_sms/tests/__init__.py
new file mode 100644
index 00000000..e6f86243
--- /dev/null
+++ b/addons/crm_sms/tests/__init__.py
@@ -0,0 +1,3 @@
+# -*- coding: utf-8 -*-
+
+from . import test_crm_lead
diff --git a/addons/crm_sms/tests/test_crm_lead.py b/addons/crm_sms/tests/test_crm_lead.py
new file mode 100644
index 00000000..f5659da8
--- /dev/null
+++ b/addons/crm_sms/tests/test_crm_lead.py
@@ -0,0 +1,29 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo.addons.crm.tests.common import TestCrmCommon
+from odoo.tests.common import Form, users
+
+
+class TestCRMLead(TestCrmCommon):
+
+ @users('user_sales_manager')
+ def test_phone_mobile_update(self):
+ lead = self.env['crm.lead'].create({
+ 'name': 'Lead 1',
+ 'country_id': self.env.ref('base.us').id,
+ 'phone': self.test_phone_data[0],
+ })
+ self.assertEqual(lead.phone, self.test_phone_data[0])
+ self.assertFalse(lead.mobile)
+ self.assertEqual(lead.phone_sanitized, self.test_phone_data_sanitized[0])
+
+ lead.write({'phone': False, 'mobile': self.test_phone_data[1]})
+ self.assertFalse(lead.phone)
+ self.assertEqual(lead.mobile, self.test_phone_data[1])
+ self.assertEqual(lead.phone_sanitized, self.test_phone_data_sanitized[1])
+
+ lead.write({'phone': self.test_phone_data[1], 'mobile': self.test_phone_data[2]})
+ self.assertEqual(lead.phone, self.test_phone_data[1])
+ self.assertEqual(lead.mobile, self.test_phone_data[2])
+ self.assertEqual(lead.phone_sanitized, self.test_phone_data_sanitized[2])
diff --git a/addons/crm_sms/views/crm_lead_views.xml b/addons/crm_sms/views/crm_lead_views.xml
new file mode 100644
index 00000000..6a3f80db
--- /dev/null
+++ b/addons/crm_sms/views/crm_lead_views.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <!-- Add action entry in the Action Menu for Leads -->
+ <record id="crm_lead_act_window_sms_composer_single" model="ir.actions.act_window">
+ <field name="name">Send SMS Text Message</field>
+ <field name="res_model">sms.composer</field>
+ <field name="view_mode">form</field>
+ <field name="target">new</field>
+ <field name="context">{
+ 'default_composition_mode': 'mass',
+ 'default_mass_keep_log': True,
+ 'default_res_ids': active_ids
+ }</field>
+ <field name="binding_model_id" ref="model_crm_lead"/>
+ <field name="binding_view_types">list</field>
+ </record>
+ <record id="crm_lead_act_window_sms_composer_multi" model="ir.actions.act_window">
+ <field name="name">Send SMS Text Message</field>
+ <field name="res_model">sms.composer</field>
+ <field name="view_mode">form</field>
+ <field name="target">new</field>
+ <field name="context">{
+ 'default_composition_mode': 'comment',
+ 'default_res_id': active_id,
+ }</field>
+ <field name="binding_model_id" ref="model_crm_lead"/>
+ <field name="binding_view_types">form</field>
+ </record>
+
+ <record id="crm_lead_view_list_activities" model="ir.ui.view">
+ <field name="name">crm.lead.view.list.activities.inherit.sms</field>
+ <field name="model">crm.lead</field>
+ <field name="inherit_id" ref="crm.crm_lead_view_list_activities"/>
+ <field name="arch" type="xml">
+ <xpath expr="//header" position="inside">
+ <button name="%(crm_sms.crm_lead_act_window_sms_composer_single)d" type="action" string="SMS" />
+ </xpath>
+ <xpath expr="//button[@name='%(crm.crm_lead_act_window_compose)d']" position="after">
+ <button name="%(crm_sms.crm_lead_act_window_sms_composer_multi)d" type="action" string="SMS" icon="fa-comments" />
+ </xpath>
+ </field>
+ </record>
+
+</odoo>