From 133246859b48e9b750d14c33dd1b1c282d929949 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:21:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 4 +++ __manifest__.py | 17 ++++++++++ i18n/ar.po | 53 ++++++++++++++++++++++++++++++ i18n/bg.po | 53 ++++++++++++++++++++++++++++++ i18n/ca.po | 56 +++++++++++++++++++++++++++++++ i18n/cs.po | 56 +++++++++++++++++++++++++++++++ i18n/da.po | 54 ++++++++++++++++++++++++++++++ i18n/de.po | 54 ++++++++++++++++++++++++++++++ i18n/es.po | 55 +++++++++++++++++++++++++++++++ i18n/es_419.po | 53 ++++++++++++++++++++++++++++++ i18n/et.po | 53 ++++++++++++++++++++++++++++++ i18n/fa.po | 56 +++++++++++++++++++++++++++++++ i18n/fi.po | 56 +++++++++++++++++++++++++++++++ i18n/fr.po | 54 ++++++++++++++++++++++++++++++ i18n/he.po | 54 ++++++++++++++++++++++++++++++ i18n/hu.po | 54 ++++++++++++++++++++++++++++++ i18n/id.po | 54 ++++++++++++++++++++++++++++++ i18n/it.po | 54 ++++++++++++++++++++++++++++++ i18n/ja.po | 52 +++++++++++++++++++++++++++++ i18n/ko.po | 52 +++++++++++++++++++++++++++++ i18n/lt.po | 53 ++++++++++++++++++++++++++++++ i18n/lv.po | 52 +++++++++++++++++++++++++++++ i18n/nl.po | 55 +++++++++++++++++++++++++++++++ i18n/pl.po | 54 ++++++++++++++++++++++++++++++ i18n/pt.po | 54 ++++++++++++++++++++++++++++++ i18n/pt_BR.po | 52 +++++++++++++++++++++++++++++ i18n/ru.po | 54 ++++++++++++++++++++++++++++++ i18n/sk.po | 54 ++++++++++++++++++++++++++++++ i18n/sl.po | 53 ++++++++++++++++++++++++++++++ i18n/sr.po | 55 +++++++++++++++++++++++++++++++ i18n/sv.po | 57 ++++++++++++++++++++++++++++++++ i18n/th.po | 53 ++++++++++++++++++++++++++++++ i18n/tr.po | 58 +++++++++++++++++++++++++++++++++ i18n/uk.po | 54 ++++++++++++++++++++++++++++++ i18n/vi.po | 54 ++++++++++++++++++++++++++++++ i18n/website_sms.pot | 48 +++++++++++++++++++++++++++ i18n/zh_CN.po | 52 +++++++++++++++++++++++++++++ i18n/zh_TW.po | 52 +++++++++++++++++++++++++++++ models/__init__.py | 4 +++ models/website_visitor.py | 40 +++++++++++++++++++++++ views/website_visitor_views.xml | 50 ++++++++++++++++++++++++++++ 41 files changed, 2052 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/website_sms.pot create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/website_visitor.py create mode 100644 views/website_visitor_views.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dc5e6b6 --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..0078b4d --- /dev/null +++ b/__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/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..05adb23 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "الرسائل النصية القصيرة " + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "إرسال رسالة نصية قصيرة " + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "إرسال رسالة نصية قصيرة " + +#. module: website_sms +#. odoo-python +#: 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/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..ec9bf31 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Ивайло Малинов , 2023 +# Albena Mincheva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Albena Mincheva , 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Изпращане на SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: website_sms +#. odoo-python +#: 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/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..1b34a99 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Josep Anton Belchi, 2023 +# Arnau Ros, 2023 +# marcescu, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: marcescu, 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Envia un missatge de text SMS" + +#. module: website_sms +#. odoo-python +#: 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 hi ha cap contacte ni números de telèfon ni de mòbil enllaçats a aquest " +"visitant." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Visitant del lloc web" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..0da04d9 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Jakub Smolka, 2023 +# Jiří Podhorecký, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Odeslat SMS" + +#. module: website_sms +#. odoo-python +#: 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 +#. odoo-python +#: 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 webu" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..735a7e5 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Send SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Send SMS tekst besked" + +#. module: website_sms +#. odoo-python +#: 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/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..c917469 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS versenden" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS-Textnachricht versenden" + +#. module: website_sms +#. odoo-python +#: 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 ist kein Kontakt und/oder keine Telefon- oder Mobilfunknummern 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/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..7072171 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar mensaje de texto SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..db76256 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Enviar mensaje de texto SMS" + +#. module: website_sms +#. odoo-python +#: 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 o números de teléfono/celular 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/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..eb9ea28 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Andre Roomet , 2023 +# Eneli Õigus , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Eneli Õigus , 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Saada SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Saada SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..7a2f656 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Mohammad Tahmasebi , 2023 +# Hanna Kheradroosta, 2023 +# saeed raesi , 2023 +# Hamed Mohammadi , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Hamed Mohammadi , 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "پیامک" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "ارسال پیامک" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "ارسال پیامک SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..e6f4996 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Jarmo Kortetjärvi , 2023 +# Ossi Mantylahti , 2023 +# Pekka Ikonen, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Pekka Ikonen, 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Lähetä tekstiviesti" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Lähetä tekstiviesti" + +#. module: website_sms +#. odoo-python +#: 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 "" +"Tähän vierailijaan ei ole linkitetty yhteystietoja ja/tai puhelinnumeroita " +"tai matkapuhelinnumeroita." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Verkkosivun vierailija" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..3557475 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Envoyer un SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Envoyer un SMS" + +#. module: website_sms +#. odoo-python +#: 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 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/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..6632d93 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# ZVI BLONDER , 2023 +# Lilach Gilliam , 2023 +# Amit Spilman , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Amit Spilman , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "שלח SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "שלח הודעת SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..852bfc8 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Ákos Nagy , 2023 +# Tamás Németh , 2023 +# Gergő Kertész , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Gergő Kertész , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS küldése" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS küldése" + +#. module: website_sms +#. odoo-python +#: 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 "Látogató" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..50789a7 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Kirim SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Kirim Pesan Teks SMS" + +#. module: website_sms +#. odoo-python +#: 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 "" +"TIdak ada kontak dan/atau nomor telepon atau mobile yang terhubung ke " +"pengunjung ini." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Pengunjung Website" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..9df1a98 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Invia SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Invia messaggio SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..034536d --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS配信" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMSテキストメッセージを送信" + +#. module: website_sms +#. odoo-python +#: 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/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..36df28d --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS 보내기" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS 문자메시지 전송" + +#. module: website_sms +#. odoo-python +#: 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/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..cfa5d93 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Linas Versada , 2023 +# Jonas Zinkevicius , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Jonas Zinkevicius , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Siųsti SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Siųsti SMS žinutę" + +#. module: website_sms +#. odoo-python +#: 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/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..b32aebe --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# ievaputnina , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: ievaputnina , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Sūtīt SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: website_sms +#. odoo-python +#: 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/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..7fd1f06 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# Erwin van der Ploeg , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Erwin van der Ploeg , 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS verzenden" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "SMS verzenden" + +#. module: website_sms +#. odoo-python +#: 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 mobiel-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/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..49b11c8 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Wyślij SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Wyślij wiadomość SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..2d2f9db --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# Vasco Rodrigues, 2024 +# Rita Bastos, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Rita Bastos, 2024\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: website_sms +#. odoo-python +#: 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 +#. odoo-python +#: 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 "Visitante do Site" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..d6ac3b0 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Enviar SMS" + +#. module: website_sms +#. odoo-python +#: 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 +#. odoo-python +#: 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ão existe contato e/ou números de telefone 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/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..c62a300 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Сергей Шебанин , 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "СМС" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Отправить SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Отправить текстовое сообщение SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..6531130 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Zaslať SMS" + +#. module: website_sms +#. odoo-python +#: 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 +#. odoo-python +#: 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/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..2351ca6 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Jasmina Macur , 2023 +# Tomaž Jug , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Tomaž Jug , 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Pošlji SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: website_sms +#. odoo-python +#: 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 "Obiskovalec spletnega mesta" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..5fa1b00 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Dragan Vukosavljevic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Šalji SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Pošalji SMS poruku" + +#. module: website_sms +#. odoo-python +#: 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 "" +"Nema kontakta i/ili nema telefonskih ili mobilnih brojeva povezanih sa ovim " +"posetiocem." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Posetilac website-a" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..fffed67 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Anders Wallenquist , 2023 +# Jakob Krabbe , 2023 +# Kim Asplund , 2023 +# Chrille Hedberg , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Chrille Hedberg , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Skicka SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Skicka SMS" + +#. module: website_sms +#. odoo-python +#: 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 "" +"Det finns ingen kontakt och/eller inga telefon- eller mobilnummer kopplade " +"till denna besökare." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Besökare" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..f15cc39 --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "ส่ง SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "ส่งข้อความ SMS" + +#. module: website_sms +#. odoo-python +#: 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/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..9305a17 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Ertuğrul Güreş , 2023 +# Murat Kaplan , 2023 +# Yedigen, 2023 +# Tugay Hatıl , 2023 +# Ediz Duman , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Ediz Duman , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "SMS Gönder" + +#. module: website_sms +#. odoo-python +#: 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 +#. odoo-python +#: 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 "" +"Bu ziyaretçiye bağlı hiçbir iletişim ve/veya telefon veya cep telefonu " +"numarası yok." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Websitesi Ziyaretçi" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..1496ae6 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Надішліть SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Надіслати SMS-повідомлення" + +#. module: website_sms +#. odoo-python +#: 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/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..5bf863e --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,54 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "SMS" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "Gửi SMS" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "Gửi tin nhắn văn bản SMS" + +#. module: website_sms +#. odoo-python +#: 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 "" +"Không có liên hệ và/hoặc số điện thoại bàn hoặc số di động nào được liên kết" +" với khách truy cập này." + +#. module: website_sms +#: model:ir.model,name:website_sms.model_website_visitor +msgid "Website Visitor" +msgstr "Khách truy cập trang web" diff --git a/i18n/website_sms.pot b/i18n/website_sms.pot new file mode 100644 index 0000000..f0cfee5 --- /dev/null +++ b/i18n/website_sms.pot @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 21:55+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_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "" + +#. module: website_sms +#. odoo-python +#: 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/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..2541fb4 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "短信息" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "发送短信息" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "发送文本短信息" + +#. module: website_sms +#. odoo-python +#: 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/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..298f881 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sms +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:55+0000\n" +"PO-Revision-Date: 2023-10-26 23:10+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_kanban +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_tree +msgid "SMS" +msgstr "電話短訊(SMS)" + +#. module: website_sms +#: model_terms:ir.ui.view,arch_db:website_sms.website_visitor_view_form +msgid "Send SMS" +msgstr "發送簡訊" + +#. module: website_sms +#. odoo-python +#: code:addons/website_sms/models/website_visitor.py:0 +#, python-format +msgid "Send SMS Text Message" +msgstr "傳送簡訊" + +#. module: website_sms +#. odoo-python +#: 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/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..8c76c6b --- /dev/null +++ b/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/models/website_visitor.py b/models/website_visitor.py new file mode 100644 index 0000000..495a70e --- /dev/null +++ b/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/views/website_visitor_views.xml b/views/website_visitor_views.xml new file mode 100644 index 0000000..e88d9d5 --- /dev/null +++ b/views/website_visitor_views.xml @@ -0,0 +1,50 @@ + + + + website.visitor.view.form.inherit.website.mass.mailing.sms + website.visitor + + + + + + + + + + + + + website.visitor.view.tree.inherit.website.sms + website.visitor + + + + + + +