diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dd15b5c --- /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 controllers diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..c967db7 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Newsletter Subscribe SMS Template', + 'summary': 'Attract visitors to subscribe to mailing lists', + 'description': """ +This module adds a new template to the Newsletter Block to allow +your visitors to subscribe with their phone number. + """, + 'version': '1.0', + 'category': 'Website/Website', + 'depends': ['website_mass_mailing', 'mass_mailing_sms'], + 'data': [ + 'views/snippets/snippets_templates.xml', + 'data/ir_model_data.xml', + ], + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..5d4b25d --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..8384aa3 --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.http import request +from odoo.addons.mass_mailing.controllers import main + + +class MassMailController(main.MassMailController): + + def _get_value(self, subscription_type): + value = super(MassMailController, self)._get_value(subscription_type) + if not value and subscription_type == 'mobile': + if not request.env.user._is_public(): + value = request.env.user.partner_id.mobile + elif request.session.get('mass_mailing_mobile'): + value = request.session['mass_mailing_mobile'] + return value + + def _get_fname(self, subscription_type): + value_field = super(MassMailController, self)._get_fname(subscription_type) + if not value_field and subscription_type == 'mobile': + value_field = 'mobile' + return value_field diff --git a/data/ir_model_data.xml b/data/ir_model_data.xml new file mode 100644 index 0000000..3209cab --- /dev/null +++ b/data/ir_model_data.xml @@ -0,0 +1,11 @@ + + + + + mailing.contact + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..b7e3aa9 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "دائماً الأول " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "كن أول من تصله أحدث الأخبار، المنتجات، والتوجهات. " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "النشرة الإخبارية عبر الرسائل النصية القصيرة " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "اشتراك الرسائل النصية القصيرة " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "اشتراك" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "شكراً " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "مثال: +1 555-555-1234 " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..8fc2059 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Maria Boyadjieva , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Maria Boyadjieva , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Абонирайте се " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Благодаря" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..5461bf4 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,59 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# M Palau , 2023 +# marcescu, 2023 +# Ivan Espinola, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ivan Espinola, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Sempre Primer" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Sigui el primer a esbrinar totes les últimes notícies, productes i " +"tendències." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Butlletí SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Subscripció SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Subscriure's" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Gràcies" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "p. ex. +1 555-555-1234" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..7061dcf --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Vždy první." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Buďte první, kdo zjistí všechny nejnovější zprávy, produkty a trendy." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS předplatné" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Odebírat" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Díky" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..1a3165f --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Altid først." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "vær den første til at få de seneste nyheder, produkter, og trends." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS Abonnement" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Tilmeld" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Tak" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..da2c984 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Immer ganz vorn dabei." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Seien Sie der Erste, der über die neuesten Nachrichten, Produkte und Trends " +"informiert wird." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS-Newsletter" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS-Abonnement" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Abonnieren" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Dankeschön" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "z. B. +1 555-555-1234" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..f979c33 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Siempre primero." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Sea el primero en enterarse de las últimas novedades, productos y " +"tendencias." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Boletín de SMS " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Suscripción SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Suscribirse" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Gracias" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "por ejemplo +1 555-555-1234" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..91ca555 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Wil Odoo, 2023 +# Fernanda Alvarez, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Fernanda Alvarez, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Siempre primero." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Sea el primero en enterarse de las novedades, productos y tendencias." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Boletín de SMS " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Suscripción a SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Suscribirse" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Gracias" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "Por ejemplo, +1 555-555-1234" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..34a1cdf --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Alati esimene." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Saa teada viimastest uudistest, toodetest ja trendidest." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS uudiskiri" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS'i tellimus" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Telli" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Aitäh" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "nt. +1 555-555-1234" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..336f35b --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# ghasem yaghoubi , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ghasem yaghoubi , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "عضویت" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "با تشکر" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..95f3714 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Miika Nissi , 2023 +# Martin Trigaux, 2023 +# Jarmo Kortetjärvi , 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Aina ensimmäinen." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Ole ensimmäinen, joka saa selville kaikki uusimmat uutiset, tuotteet ja " +"trendit." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS-uutiskirje" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Tekstiviestitilaus" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Tilaa" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Kiitos" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "esim. +1 555-555-1234" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..1468c5a --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Restez informés !" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Soyez les premiers à découvrir nos dernières actualités, produits et " +"tendances." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Newsletter par SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Abonnement SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "S'inscrire" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Merci" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "par ex. +1 555-555-1234" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..5d637a8 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Ha Ketem , 2023 +# ZVI BLONDER , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ZVI BLONDER , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "תמיד ראשון." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "היו הראשונים לגלות את כל החדשות, המוצרים והמגמות." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "מנוי SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "הירשם כמנוי" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "תודה" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..5efed63 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Feliratkozás" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Köszönettel" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..f32173c --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Selalu Pertama." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Jadilah yang pertama mendapatkan semua berita, produk dan trend terkini." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Buletin SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Langganan SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Langganan" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Terima kasih" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "contoh, +1 555-555-1234" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..79a34ff --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Sempre in testa." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Sii il primo a scoprire tutte le ultime novità, prodotti e tendenze." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Newsletter via SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Iscrizione SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Iscriviti" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Grazie" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "ad es. +1 555-555-1234" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..0492b90 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "常に一番。" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "最新ニュース、製品、トレンドをいち早くお届けします。" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMSニュースレター" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS サブスクリプション" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "購読" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "ありがとうございます" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "例 +1 555-555-1234" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..5fc860e --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "항상 첫번째로." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "모든 최신 뉴스, 제품 및 트렌드를 가장 먼저 확인하세요." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS 뉴스레터" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS 구독" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "구독" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "감사합니다" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "예. +1 555-555-1234" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..81c0ffc --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Antanas Muliuolis , 2023 +# digitouch UAB , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: digitouch UAB , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Prenumeruoti" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Ačiū" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..9586098 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# JanisJanis , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: JanisJanis , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Abonēt" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..5e7cb8a --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Altijd eerst." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Wees de eerste die het laatste nieuws, producten en trends ontdekt." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS nieuwsbrief" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS abonnement" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Inschrijven" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Bedankt" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "bijv. +1 555-555-1234" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..8fef322 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Zawsze Pierwszy." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Bądź pierwszym, by dowieć się o wszystkich nowościach, produktach i " +"trendach." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Newsletter SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Subskrypcja SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Zaprenumeruj" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Dziękuję" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "np. +1 555-555-1234" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..6a73727 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Subscrever" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Obrigado" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..ba1b8a8 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Sempre primeiro." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Seja o primeiro a saber as últimas novidades, produtos e tendências." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Newsletter por SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "Inscrição por SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Inscrever" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Obrigado" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "ex., +55 61 3535 3535" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..35eefa4 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Martin Trigaux, 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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Всегда первый." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Узнавайте первыми обо всех последних новостях, продуктах и тенденциях." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS-рассылка" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS-подписка" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Подписаться" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Спасибо" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "например, +1 555-555-1234" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..a9a0e3d --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Vždy prvý." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Buďte prvý, kto sa dozvie o novinkách, produktoch a trendoch." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS predplatné" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Odoberať" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Ďakujem" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..78e17cc --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Naroči se" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Hvala" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..dca1330 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Always First." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Be the first to find out all the latest news, products, and trends." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS Newsletter" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS Subscription" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Prijavi se" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Thanks" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "e.g. +1 555-555-1234" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..995f253 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Martin Trigaux, 2023 +# Kim Asplund , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Kim Asplund , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Alltid Först" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Var den första att få reda på alla de senaste nyheterna, produkterna och " +"trenderna." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Prenumerera" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Tack" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..ca1d46b --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2023\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "เป็นอันดับแรกเสมอ" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "เป็นคนแรกที่ค้นพบข่าวสาร ผลิตภัณฑ์ และเทรนด์ล่าสุดทั้งหมด" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "จดหมายข่าวทาง SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "สมัครรับข้อมูลผ่าน SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "ติดตาม" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "ขอบคุณ" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "เช่น +1 555-555-1234" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..a51b66f --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Ertuğrul Güreş , 2023 +# Tugay Hatıl , 2023 +# Martin Trigaux, 2023 +# Halil, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Halil, 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Her zaman ilk." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "En son haberleri, ürünleri ve trendleri ilk öğrenen siz olun." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "SMS Bülteni" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS Aboneliği" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Abone Ol" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Teşekkürler" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "örn. +1 555-555-1234" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..2beedf1 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,57 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +# Translators: +# Wil Odoo, 2023 +# Alina Lisnenko , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Alina Lisnenko , 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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Завжди перший." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" +"Будьте першим, хто дізнається всі останні новини, продукти та тенденції." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "Інформаційний бюлетень SMS" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS-підписка" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Підписатися" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Дякуємо" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "напр. +1 555-555-1234" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..f35d21d --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "Luôn nhận tin đầu tiên" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "Hãy là người đầu tiên nhận bản tin, sản phẩm và xu hướng mới nhất. " + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "SMS Subscription" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "Đăng ký nhận tin" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "Cám ơn" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/website_mass_mailing_sms.pot b/i18n/website_mass_mailing_sms.pot new file mode 100644 index 0000000..6757c7f --- /dev/null +++ b/i18n/website_mass_mailing_sms.pot @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_sms +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..cc5b350 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "永远第一。" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "成为第一个发现所有最新消息、产品和趋势的人。" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "短信息新闻信" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "短信息订阅" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "订阅" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "谢谢" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "例如:+1 555-555-1234" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..a6856ab --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,55 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_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:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+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_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Always First." +msgstr "永遠置頂." + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Be the first to find out all the latest news, products, and trends." +msgstr "成為第一個了解所有最新消息、產品資訊與趨勢的人。" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Newsletter" +msgstr "最新消息短訊" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.newsletter_subscribe_options +msgid "SMS Subscription" +msgstr "簡訊訂閱" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Subscribe" +msgstr "訂閱" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "Thanks" +msgstr "謝謝" + +#. module: website_mass_mailing_sms +#: model_terms:ir.ui.view,arch_db:website_mass_mailing_sms.s_newsletter_block_sms_template +msgid "e.g. +1 555-555-1234" +msgstr "" diff --git a/views/snippets/snippets_templates.xml b/views/snippets/snippets_templates.xml new file mode 100644 index 0000000..f9ccb8b --- /dev/null +++ b/views/snippets/snippets_templates.xml @@ -0,0 +1,29 @@ + + + + + + + Always First. + Be the first to find out all the latest news, products, and trends. + + + + + Subscribe + Thanks + + + + + + + + + + + + +
Be the first to find out all the latest news, products, and trends.