summaryrefslogtreecommitdiff
path: root/addons/website_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/website_sms
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website_sms')
-rw-r--r--addons/website_sms/__init__.py4
-rw-r--r--addons/website_sms/__manifest__.py17
-rw-r--r--addons/website_sms/i18n/ar.po66
-rw-r--r--addons/website_sms/i18n/bg.po67
-rw-r--r--addons/website_sms/i18n/bn.po65
-rw-r--r--addons/website_sms/i18n/ca.po67
-rw-r--r--addons/website_sms/i18n/ckb.po65
-rw-r--r--addons/website_sms/i18n/cs.po70
-rw-r--r--addons/website_sms/i18n/da.po72
-rw-r--r--addons/website_sms/i18n/de.po72
-rw-r--r--addons/website_sms/i18n/el.po67
-rw-r--r--addons/website_sms/i18n/eo.po61
-rw-r--r--addons/website_sms/i18n/es.po72
-rw-r--r--addons/website_sms/i18n/es_MX.po67
-rw-r--r--addons/website_sms/i18n/et.po67
-rw-r--r--addons/website_sms/i18n/eu.po66
-rw-r--r--addons/website_sms/i18n/fa.po67
-rw-r--r--addons/website_sms/i18n/fi.po67
-rw-r--r--addons/website_sms/i18n/fr.po72
-rw-r--r--addons/website_sms/i18n/he.po67
-rw-r--r--addons/website_sms/i18n/hi.po61
-rw-r--r--addons/website_sms/i18n/hr.po66
-rw-r--r--addons/website_sms/i18n/hu.po66
-rw-r--r--addons/website_sms/i18n/id.po66
-rw-r--r--addons/website_sms/i18n/it.po67
-rw-r--r--addons/website_sms/i18n/ja.po67
-rw-r--r--addons/website_sms/i18n/ka.po65
-rw-r--r--addons/website_sms/i18n/km.po66
-rw-r--r--addons/website_sms/i18n/ko.po68
-rw-r--r--addons/website_sms/i18n/lt.po68
-rw-r--r--addons/website_sms/i18n/lv.po61
-rw-r--r--addons/website_sms/i18n/mn.po67
-rw-r--r--addons/website_sms/i18n/nb.po67
-rw-r--r--addons/website_sms/i18n/nl.po68
-rw-r--r--addons/website_sms/i18n/pl.po70
-rw-r--r--addons/website_sms/i18n/pt.po66
-rw-r--r--addons/website_sms/i18n/pt_BR.po69
-rw-r--r--addons/website_sms/i18n/ro.po70
-rw-r--r--addons/website_sms/i18n/ru.po68
-rw-r--r--addons/website_sms/i18n/si.po61
-rw-r--r--addons/website_sms/i18n/sk.po71
-rw-r--r--addons/website_sms/i18n/sl.po67
-rw-r--r--addons/website_sms/i18n/sv.po68
-rw-r--r--addons/website_sms/i18n/th.po66
-rw-r--r--addons/website_sms/i18n/tr.po69
-rw-r--r--addons/website_sms/i18n/uk.po67
-rw-r--r--addons/website_sms/i18n/ur.po61
-rw-r--r--addons/website_sms/i18n/vi.po67
-rw-r--r--addons/website_sms/i18n/website_sms.pot61
-rw-r--r--addons/website_sms/i18n/zh_CN.po71
-rw-r--r--addons/website_sms/i18n/zh_TW.po65
-rw-r--r--addons/website_sms/models/__init__.py4
-rw-r--r--addons/website_sms/models/website_visitor.py40
-rw-r--r--addons/website_sms/views/website_visitor_views.xml48
54 files changed, 3390 insertions, 0 deletions
diff --git a/addons/website_sms/__init__.py b/addons/website_sms/__init__.py
new file mode 100644
index 00000000..dc5e6b69
--- /dev/null
+++ b/addons/website_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/website_sms/__manifest__.py b/addons/website_sms/__manifest__.py
new file mode 100644
index 00000000..0078b4d2
--- /dev/null
+++ b/addons/website_sms/__manifest__.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Send SMS to Visitor',
+ 'category': 'Website/Website',
+ 'sequence': 54,
+ 'summary': 'Allows to send sms to website visitor',
+ 'version': '1.0',
+ 'description': """Allows to send sms to website visitor if the visitor is linked to a partner.""",
+ 'depends': ['website', 'sms'],
+ 'data': [
+ 'views/website_visitor_views.xml',
+ ],
+ 'installable': True,
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}
diff --git a/addons/website_sms/i18n/ar.po b/addons/website_sms/i18n/ar.po
new file mode 100644
index 00000000..8907131e
--- /dev/null
+++ b/addons/website_sms/i18n/ar.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "إرسال رسالة نصية قصيرة SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/bg.po b/addons/website_sms/i18n/bg.po
new file mode 100644
index 00000000..bb82e77a
--- /dev/null
+++ b/addons/website_sms/i18n/bg.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Albena Mincheva <albena_vicheva@abv.bg>, 2020
+# Ивайло Малинов <iv.malinov@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Изпращане на SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/bn.po b/addons/website_sms/i18n/bn.po
new file mode 100644
index 00000000..8e2b2868
--- /dev/null
+++ b/addons/website_sms/i18n/bn.po
@@ -0,0 +1,65 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/ca.po b/addons/website_sms/i18n/ca.po
new file mode 100644
index 00000000..7446a13e
--- /dev/null
+++ b/addons/website_sms/i18n/ca.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Arnau Ros, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Enviar SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/ckb.po b/addons/website_sms/i18n/ckb.po
new file mode 100644
index 00000000..0f7aadef
--- /dev/null
+++ b/addons/website_sms/i18n/ckb.po
@@ -0,0 +1,65 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "کورتەنامە"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "ناردنی کورتەنامە"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "ناردنی کورتەنامەی دەق"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/cs.po b/addons/website_sms/i18n/cs.po
new file mode 100644
index 00000000..68610bfd
--- /dev/null
+++ b/addons/website_sms/i18n/cs.po
@@ -0,0 +1,70 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+# trendspotter, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: trendspotter, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Odeslat SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Odeslat SMS textovou zprávu"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"S tímto návštěvníkem není spojen žádný kontakt a / nebo žádná telefonní nebo"
+" mobilní čísla."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Návštěvník webstránky"
diff --git a/addons/website_sms/i18n/da.po b/addons/website_sms/i18n/da.po
new file mode 100644
index 00000000..01941f8b
--- /dev/null
+++ b/addons/website_sms/i18n/da.po
@@ -0,0 +1,72 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# lhmflexerp <lhm@flexerp.dk>, 2020
+# walther_b <wba@miracle.dk>, 2020
+# Mads Søndergaard, 2020
+# Mads Søndergaard <mads@vkdata.dk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n"
+"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Send SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Send SMS tekst besked"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Der er ingen kontakt og/eller ingen telefon eller mobilnumre forbundet til "
+"denne besøgende."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Hjemmeside besøgende"
diff --git a/addons/website_sms/i18n/de.po b/addons/website_sms/i18n/de.po
new file mode 100644
index 00000000..b9336ddd
--- /dev/null
+++ b/addons/website_sms/i18n/de.po
@@ -0,0 +1,72 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Andi, 2020
+# Leon Grill <leg@odoo.com>, 2020
+# JEK Odoo <jek@odoo.com>, 2020
+# Max-Milan Stoyanov, 2020
+# Chris Egal <sodaswed@web.de>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS senden"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "SMS-Textnachricht senden"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Es sind keine Kontakt- und/oder keine Telefon- oder Handynummern mit diesem "
+"Besucher verknüpft."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Website-Besucher"
diff --git a/addons/website_sms/i18n/el.po b/addons/website_sms/i18n/el.po
new file mode 100644
index 00000000..a888b108
--- /dev/null
+++ b/addons/website_sms/i18n/el.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# George Tarasidis <george_tarasidis@yahoo.com>, 2020
+# Alexandros Kapetanios <alexandros@gnugr.org>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Αποστολή SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Αποστολή κειμένου SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/eo.po b/addons/website_sms/i18n/eo.po
new file mode 100644
index 00000000..d4e446f0
--- /dev/null
+++ b/addons/website_sms/i18n/eo.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/es.po b/addons/website_sms/i18n/es.po
new file mode 100644
index 00000000..a7e6da33
--- /dev/null
+++ b/addons/website_sms/i18n/es.po
@@ -0,0 +1,72 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Sarai Osorio <sarai.osorio@jarsa.com.mx>, 2020
+# Jon Perez <jop@odoo.com>, 2020
+# Juan Pablo Mora <jpm@odoo.com>, 2020
+# Osiris Román <osiris.roman@yachaytech.edu.ec>, 2020
+# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: José Cabrera Lozano <jose.cabrera@edukative.es>, 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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Enviar SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Manda Mensaje de Texto SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"No hay contacto y / o números de teléfono o móviles vinculados a este "
+"visitante."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Visitante del sitio web"
diff --git a/addons/website_sms/i18n/es_MX.po b/addons/website_sms/i18n/es_MX.po
new file mode 100644
index 00000000..4e891b2c
--- /dev/null
+++ b/addons/website_sms/i18n/es_MX.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Cécile Collart <cco@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Cécile Collart <cco@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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Enviar SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Manda Mensaje de Texto SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"No hay contacto y / o números de teléfono o móviles vinculados a este "
+"visitante."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Visitante del sitio web"
diff --git a/addons/website_sms/i18n/et.po b/addons/website_sms/i18n/et.po
new file mode 100644
index 00000000..be0d443e
--- /dev/null
+++ b/addons/website_sms/i18n/et.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_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 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Saada SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Saada SMS tekstsõnum"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr "Antud külastajaga pole seostatud kontakti ega/või telefoni numbreid."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Veebilehe Külastaja"
diff --git a/addons/website_sms/i18n/eu.po b/addons/website_sms/i18n/eu.po
new file mode 100644
index 00000000..3c1d3632
--- /dev/null
+++ b/addons/website_sms/i18n/eu.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/fa.po b/addons/website_sms/i18n/fa.po
new file mode 100644
index 00000000..44d9700c
--- /dev/null
+++ b/addons/website_sms/i18n/fa.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+# Arash Sardari <arashss77@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Arash Sardari <arashss77@gmail.com>, 2020\n"
+"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "ارسال اس ام اس"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "بازدید کننده وبسایت"
diff --git a/addons/website_sms/i18n/fi.po b/addons/website_sms/i18n/fi.po
new file mode 100644
index 00000000..9d3f03e0
--- /dev/null
+++ b/addons/website_sms/i18n/fi.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# 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 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Lähetä tekstiviesti"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Verkkosivun vierailija"
diff --git a/addons/website_sms/i18n/fr.po b/addons/website_sms/i18n/fr.po
new file mode 100644
index 00000000..6019d641
--- /dev/null
+++ b/addons/website_sms/i18n/fr.po
@@ -0,0 +1,72 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Nicolas Roussey <nro@odoo.com>, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# gdp Odoo <gdp@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+# Alexandra Jubert <aju@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Alexandra Jubert <aju@odoo.com>, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Envoi de SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Envoyer un SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Il n'y a aucun contact et/ou de numéro de téléphone ou de portable liés à ce"
+" visiteur."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Visiteur du site web"
diff --git a/addons/website_sms/i18n/he.po b/addons/website_sms/i18n/he.po
new file mode 100644
index 00000000..48160bd1
--- /dev/null
+++ b/addons/website_sms/i18n/he.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+# Amit Spilman <amit@laylinetech.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Amit Spilman <amit@laylinetech.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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "הצג שם"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "תעודה מזהה"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "שינוי אחרון ב"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "שלח SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "שלח הודעת SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "מבקר באתר האינטרנט"
diff --git a/addons/website_sms/i18n/hi.po b/addons/website_sms/i18n/hi.po
new file mode 100644
index 00000000..daff45a3
--- /dev/null
+++ b/addons/website_sms/i18n/hi.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/hr.po b/addons/website_sms/i18n/hr.po
new file mode 100644
index 00000000..ac3f65be
--- /dev/null
+++ b/addons/website_sms/i18n/hr.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Bole <bole@dajmi5.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Pošalji SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Pošalji SMS poruku"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/hu.po b/addons/website_sms/i18n/hu.po
new file mode 100644
index 00000000..028a5a0b
--- /dev/null
+++ b/addons/website_sms/i18n/hu.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS küldése"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "SMS küldése"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/id.po b/addons/website_sms/i18n/id.po
new file mode 100644
index 00000000..6e1a113b
--- /dev/null
+++ b/addons/website_sms/i18n/id.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Abdul Munif Hanafi <amunifhanafi@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Kirim SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Kirim Pesan Teks SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/it.po b/addons/website_sms/i18n/it.po
new file mode 100644
index 00000000..894258c4
--- /dev/null
+++ b/addons/website_sms/i18n/it.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Sergio Zanchetta <primes2h@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n"
+"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Invia SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Invia messaggio SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Non sono presenti contatti o numeri di telefono/cellulare collegati al "
+"visitatore."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Visitatore sito web"
diff --git a/addons/website_sms/i18n/ja.po b/addons/website_sms/i18n/ja.po
new file mode 100644
index 00000000..d4ff1b9e
--- /dev/null
+++ b/addons/website_sms/i18n/ja.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_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 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS配信"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "SMSテキストメッセージを送信"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr "この訪問者にリンクされている連絡先および/または電話番号や携帯電話番号はありません。"
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "ウェブサイト訪問者"
diff --git a/addons/website_sms/i18n/ka.po b/addons/website_sms/i18n/ka.po
new file mode 100644
index 00000000..613dee41
--- /dev/null
+++ b/addons/website_sms/i18n/ka.po
@@ -0,0 +1,65 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/km.po b/addons/website_sms/i18n/km.po
new file mode 100644
index 00000000..9f50dfe7
--- /dev/null
+++ b/addons/website_sms/i18n/km.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "ផ្ញើរសារ SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/ko.po b/addons/website_sms/i18n/ko.po
new file mode 100644
index 00000000..20f650a1
--- /dev/null
+++ b/addons/website_sms/i18n/ko.po
@@ -0,0 +1,68 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# JH CHOI <hwangtog@gmail.com>, 2020
+# Linkup <link-up@naver.com>, 2020
+# Seongseok Shin <shinss61@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Seongseok Shin <shinss61@hotmail.com>, 2020\n"
+"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS 보내기"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "SMS 문자메시지 전송"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "웹사이트 방문자"
diff --git a/addons/website_sms/i18n/lt.po b/addons/website_sms/i18n/lt.po
new file mode 100644
index 00000000..3082e485
--- /dev/null
+++ b/addons/website_sms/i18n/lt.po
@@ -0,0 +1,68 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+# Jonas Zinkevicius <jozi@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Siųsti SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Siųsti SMS žinutę"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr "Su šiuo lankytoju nėra susieti jokie kontaktiniai telefono numeriai."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Svetainės lankytojas"
diff --git a/addons/website_sms/i18n/lv.po b/addons/website_sms/i18n/lv.po
new file mode 100644
index 00000000..4421bad9
--- /dev/null
+++ b/addons/website_sms/i18n/lv.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/mn.po b/addons/website_sms/i18n/mn.po
new file mode 100644
index 00000000..25f8242c
--- /dev/null
+++ b/addons/website_sms/i18n/mn.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# tserendavaa tsogtoo <tseegii011929@gmail.com>, 2020
+# Uuganbayar Batbaatar <uuganaaub33@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "Мессеж"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS илгээх"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Вебсайт зочин"
diff --git a/addons/website_sms/i18n/nb.po b/addons/website_sms/i18n/nb.po
new file mode 100644
index 00000000..899beb7c
--- /dev/null
+++ b/addons/website_sms/i18n/nb.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jorunn D. Newth, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Send SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Send SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Nettstedbesøkende"
diff --git a/addons/website_sms/i18n/nl.po b/addons/website_sms/i18n/nl.po
new file mode 100644
index 00000000..cab0c596
--- /dev/null
+++ b/addons/website_sms/i18n/nl.po
@@ -0,0 +1,68 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Verzend SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Verzend SMS tekstbericht"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Er is geen contactpersoon en/of geen telefoon- of gsm-nummer gekoppeld aan "
+"deze bezoeker."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Website bezoeker"
diff --git a/addons/website_sms/i18n/pl.po b/addons/website_sms/i18n/pl.po
new file mode 100644
index 00000000..dfd9d19a
--- /dev/null
+++ b/addons/website_sms/i18n/pl.po
@@ -0,0 +1,70 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+# Wiktor Kaźmierczak <wik92tor@wp.pl>, 2020
+# Maksym <ms@myodoo.pl>, 2020
+# Piotr Strębski <strebski@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Wyślij SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Wyślij wiadomość tekstową SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Nie ma danych kontaktowych i/lub numerów telefonów lub telefonów komórkowych"
+" powiązanych z tym odwiedzającym."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Odwiedzający stronę"
diff --git a/addons/website_sms/i18n/pt.po b/addons/website_sms/i18n/pt.po
new file mode 100644
index 00000000..3b0b2b03
--- /dev/null
+++ b/addons/website_sms/i18n/pt.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Enviar SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/pt_BR.po b/addons/website_sms/i18n/pt_BR.po
new file mode 100644
index 00000000..d1ec0d5c
--- /dev/null
+++ b/addons/website_sms/i18n/pt_BR.po
@@ -0,0 +1,69 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_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
+# Éder Brito <britoederr@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Enviar SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Enviar mensagem de texto SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr "Ná existe contato e/ou números telefônicos vinculados ao visitante."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Visitante do site"
diff --git a/addons/website_sms/i18n/ro.po b/addons/website_sms/i18n/ro.po
new file mode 100644
index 00000000..f5dcc852
--- /dev/null
+++ b/addons/website_sms/i18n/ro.po
@@ -0,0 +1,70 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020
+# Dorin Hongu <dhongu@gmail.com>, 2020
+# Foldi Robert <foldirobert@nexterp.ro>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Trimite SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Trimiteți mesaj SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Nu există niciun contact și / sau niciun număr de telefon sau mobil legat de"
+" acest vizitator."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Vizitator site web"
diff --git a/addons/website_sms/i18n/ru.po b/addons/website_sms/i18n/ru.po
new file mode 100644
index 00000000..e22df01a
--- /dev/null
+++ b/addons/website_sms/i18n/ru.po
@@ -0,0 +1,68 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+# ILMIR <karamov@it-projects.info>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "СМС"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Отправить SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Отправить СМС сообщение"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Посетитель веб-сайта"
diff --git a/addons/website_sms/i18n/si.po b/addons/website_sms/i18n/si.po
new file mode 100644
index 00000000..dada8b32
--- /dev/null
+++ b/addons/website_sms/i18n/si.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/sk.po b/addons/website_sms/i18n/sk.po
new file mode 100644
index 00000000..ef42389b
--- /dev/null
+++ b/addons/website_sms/i18n/sk.po
@@ -0,0 +1,71 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Prokop, 2020
+# Adam Levrinc <adam.levrinc@26house.com>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+# Damian Brencic <brencicdamian12313@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Damian Brencic <brencicdamian12313@gmail.com>, 2021\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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Zaslať SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Poslať SMS textovú správu"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"S týmto návštevníkom nie sú spojené žiadne kontakty a / alebo žiadne "
+"telefónne alebo mobilné čísla."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Návštevník webstránky"
diff --git a/addons/website_sms/i18n/sl.po b/addons/website_sms/i18n/sl.po
new file mode 100644
index 00000000..b9001399
--- /dev/null
+++ b/addons/website_sms/i18n/sl.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+# Jasmina Macur <jasmina@hbs.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n"
+"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Pošlji SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/sv.po b/addons/website_sms/i18n/sv.po
new file mode 100644
index 00000000..284bc745
--- /dev/null
+++ b/addons/website_sms/i18n/sv.po
@@ -0,0 +1,68 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2021
+# Kim Asplund <kim.asplund@gmail.com>, 2021
+# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Skicka SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Webbplats Besökare"
diff --git a/addons/website_sms/i18n/th.po b/addons/website_sms/i18n/th.po
new file mode 100644
index 00000000..37aeb81b
--- /dev/null
+++ b/addons/website_sms/i18n/th.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Odoo Thaidev <odoothaidev@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+0000\n"
+"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n"
+"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "ส่ง SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Website Visitor"
diff --git a/addons/website_sms/i18n/tr.po b/addons/website_sms/i18n/tr.po
new file mode 100644
index 00000000..cabff45c
--- /dev/null
+++ b/addons/website_sms/i18n/tr.po
@@ -0,0 +1,69 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Ediz Duman <neps1192@gmail.com>, 2020
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+# Yedigen, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "SMS Gönder"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "SMS Metin Mesajı Gönderin"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Websitesi Ziyaretçi"
diff --git a/addons/website_sms/i18n/uk.po b/addons/website_sms/i18n/uk.po
new file mode 100644
index 00000000..f7eb1cae
--- /dev/null
+++ b/addons/website_sms/i18n/uk.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Надішліть SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Надіслати SMS-повідомлення"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+"Немає контактту та/або телефону чи мобільного номеру пов'язаного з цим "
+"відвідувачем."
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Відвідувач веб-сайту"
diff --git a/addons/website_sms/i18n/ur.po b/addons/website_sms/i18n/ur.po
new file mode 100644
index 00000000..74f44f9a
--- /dev/null
+++ b/addons/website_sms/i18n/ur.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/vi.po b/addons/website_sms/i18n/vi.po
new file mode 100644
index 00000000..dceb2b9e
--- /dev/null
+++ b/addons/website_sms/i18n/vi.po
@@ -0,0 +1,67 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Duy BQ <duybq86@gmail.com>, 2020
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Trần Hà <tranthuha13590@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "Send SMS"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "Send SMS Text Message"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "Khách truy cập website"
diff --git a/addons/website_sms/i18n/website_sms.pot b/addons/website_sms/i18n/website_sms.pot
new file mode 100644
index 00000000..d5c2e948
--- /dev/null
+++ b/addons/website_sms/i18n/website_sms.pot
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-10-02 14:11+0000\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr ""
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr ""
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr ""
diff --git a/addons/website_sms/i18n/zh_CN.po b/addons/website_sms/i18n/zh_CN.po
new file mode 100644
index 00000000..8891c746
--- /dev/null
+++ b/addons/website_sms/i18n/zh_CN.po
@@ -0,0 +1,71 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020
+# 苏州远鼎 <tiexinliu@126.com>, 2020
+# guohuadeng <guohuadeng@hotmail.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 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "短信"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "发送短信"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "发送文本短信"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr ""
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "网页访问者"
diff --git a/addons/website_sms/i18n/zh_TW.po b/addons/website_sms/i18n/zh_TW.po
new file mode 100644
index 00000000..117290b5
--- /dev/null
+++ b/addons/website_sms/i18n/zh_TW.po
@@ -0,0 +1,65 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sms
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-02 14:11+0000\n"
+"PO-Revision-Date: 2020-09-07 08:23+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: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor__id
+msgid "ID"
+msgstr "ID"
+
+#. module: website_sms
+#: model:ir.model.fields,field_description:website_sms.field_website_visitor____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban
+msgid "SMS"
+msgstr "SMS簡訊"
+
+#. module: website_sms
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form
+#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree
+msgid "Send SMS"
+msgstr "發送短信"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid "Send SMS Text Message"
+msgstr "傳送簡訊"
+
+#. module: website_sms
+#: code:addons/website_sms/models/website_visitor.py:0
+#, python-format
+msgid ""
+"There are no contact and/or no phone or mobile numbers linked to this "
+"visitor."
+msgstr "沒有聯繫和/或沒有電話或手機號碼連結到此訪問者。"
+
+#. module: website_sms
+#: model:ir.model,name:website_sms.model_website_visitor
+msgid "Website Visitor"
+msgstr "網站訪問者"
diff --git a/addons/website_sms/models/__init__.py b/addons/website_sms/models/__init__.py
new file mode 100644
index 00000000..8c76c6be
--- /dev/null
+++ b/addons/website_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 website_visitor
diff --git a/addons/website_sms/models/website_visitor.py b/addons/website_sms/models/website_visitor.py
new file mode 100644
index 00000000..495a70ef
--- /dev/null
+++ b/addons/website_sms/models/website_visitor.py
@@ -0,0 +1,40 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import models, _
+from odoo.exceptions import UserError
+
+
+class WebsiteVisitor(models.Model):
+ _inherit = 'website.visitor'
+
+ def _check_for_sms_composer(self):
+ """ Purpose of this method is to actualize visitor model prior to contacting
+ him. Used notably for inheritance purpose, when dealing with leads that
+ could update the visitor model. """
+ return bool(self.partner_id and (self.partner_id.mobile or self.partner_id.phone))
+
+ def _prepare_sms_composer_context(self):
+ return {
+ 'default_res_model': 'res.partner',
+ 'default_res_id': self.partner_id.id,
+ 'default_composition_mode': 'comment',
+ 'default_number_field_name': 'mobile' if self.partner_id.mobile else 'phone',
+ }
+
+ def action_send_sms(self):
+ self.ensure_one()
+ if not self._check_for_sms_composer():
+ raise UserError(_("There are no contact and/or no phone or mobile numbers linked to this visitor."))
+ visitor_composer_ctx = self._prepare_sms_composer_context()
+
+ compose_ctx = dict(self.env.context)
+ compose_ctx.update(**visitor_composer_ctx)
+ return {
+ "name": _("Send SMS Text Message"),
+ "type": "ir.actions.act_window",
+ "res_model": "sms.composer",
+ "view_mode": 'form',
+ "context": compose_ctx,
+ "target": "new",
+ }
diff --git a/addons/website_sms/views/website_visitor_views.xml b/addons/website_sms/views/website_visitor_views.xml
new file mode 100644
index 00000000..3a7d43c9
--- /dev/null
+++ b/addons/website_sms/views/website_visitor_views.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo><data>
+ <record id="website_visitor_view_form" model="ir.ui.view">
+ <field name="name">website.visitor.view.form.inherit.website.mass.mailing.sms</field>
+ <field name="model">website.visitor</field>
+ <field name="inherit_id" ref="website.website_visitor_view_form"/>
+ <field name="arch" type="xml">
+ <xpath expr="//header" position="inside">
+ <button name="action_send_sms" type="object" class="btn btn-primary"
+ attrs="{'invisible': [('mobile', '=', False)]}" string="Send SMS"/>
+ </xpath>
+ </field>
+ </record>
+
+ <record id="website_visitor_view_kanban" model="ir.ui.view">
+ <field name="name">website.visitor.view.kanban.inherit.website.sms</field>
+ <field name="model">website.visitor</field>
+ <field name="inherit_id" ref="website.website_visitor_view_kanban"/>
+ <field name="arch" type="xml">
+ <field name="page_ids" position="after">
+ <field name="mobile" widget="phone"/>
+ </field>
+ <xpath expr="//div[hasclass('w_visitor_kanban_actions')]" position="inside">
+ <button name="action_send_sms" type="object" class="btn btn-secondary"
+ attrs="{'invisible': [('mobile', '=', False)]}">SMS
+ </button>
+ </xpath>
+ <xpath expr="//div[hasclass('w_visitor_kanban_actions_ungrouped')]" position="inside">
+ <button name="action_send_sms" type="object" class="btn btn-secondary border"
+ attrs="{'invisible': [('mobile', '=', False)]}">SMS
+ </button>
+ </xpath>
+ </field>
+ </record>
+
+ <record id="website_visitor_view_tree" model="ir.ui.view">
+ <field name="name">website.visitor.view.tree.inherit.website.sms</field>
+ <field name="model">website.visitor</field>
+ <field name="inherit_id" ref="website.website_visitor_view_tree"/>
+ <field name="arch" type="xml">
+ <xpath expr="//button[@name='action_send_mail']" position="after">
+ <field name="mobile" invisible="1"/>
+ <button name="action_send_sms" type="object" icon="fa-mobile"
+ attrs="{'invisible': [('mobile', '=', False)]}" string="Send SMS"/>
+ </xpath>
+ </field>
+ </record>
+</data></odoo>