Начальное наполнение
This commit is contained in:
parent
687ed97cf2
commit
144fbcd3cd
4
__init__.py
Normal file
4
__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
20
__manifest__.py
Normal file
20
__manifest__.py
Normal file
@ -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',
|
||||
}
|
4
controllers/__init__.py
Normal file
4
controllers/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
23
controllers/main.py
Normal file
23
controllers/main.py
Normal file
@ -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
|
11
data/ir_model_data.xml
Normal file
11
data/ir_model_data.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<function model="ir.model.fields" name="formbuilder_whitelist">
|
||||
<value>mailing.contact</value>
|
||||
<value eval="[
|
||||
'mobile',
|
||||
]"/>
|
||||
</function>
|
||||
</data>
|
||||
</odoo>
|
55
i18n/ar.po
Normal file
55
i18n/ar.po
Normal file
@ -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 "
|
55
i18n/bg.po
Normal file
55
i18n/bg.po
Normal file
@ -0,0 +1,55 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 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 <marabo2000@gmail.com>, 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 ""
|
59
i18n/ca.po
Normal file
59
i18n/ca.po
Normal file
@ -0,0 +1,59 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# M Palau <mpalau@tda.ad>, 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"
|
55
i18n/cs.po
Normal file
55
i18n/cs.po
Normal file
@ -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 ""
|
55
i18n/da.po
Normal file
55
i18n/da.po
Normal file
@ -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 ""
|
57
i18n/de.po
Normal file
57
i18n/de.po
Normal file
@ -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"
|
58
i18n/es.po
Normal file
58
i18n/es.po
Normal file
@ -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"
|
56
i18n/es_419.po
Normal file
56
i18n/es_419.po
Normal file
@ -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"
|
55
i18n/et.po
Normal file
55
i18n/et.po
Normal file
@ -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"
|
55
i18n/fa.po
Normal file
55
i18n/fa.po
Normal file
@ -0,0 +1,55 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# ghasem yaghoubi <y.ghasem@gmail.com>, 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 <y.ghasem@gmail.com>, 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 ""
|
60
i18n/fi.po
Normal file
60
i18n/fi.po
Normal file
@ -0,0 +1,60 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 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 <ossi.mantylahti@obs-solutions.fi>, 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"
|
57
i18n/fr.po
Normal file
57
i18n/fr.po
Normal file
@ -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"
|
56
i18n/he.po
Normal file
56
i18n/he.po
Normal file
@ -0,0 +1,56 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 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 <ZVIBLONDER@gmail.com>, 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 ""
|
55
i18n/hu.po
Normal file
55
i18n/hu.po
Normal file
@ -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 ""
|
56
i18n/id.po
Normal file
56
i18n/id.po
Normal file
@ -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"
|
55
i18n/it.po
Normal file
55
i18n/it.po
Normal file
@ -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"
|
55
i18n/ja.po
Normal file
55
i18n/ja.po
Normal file
@ -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"
|
55
i18n/ko.po
Normal file
55
i18n/ko.po
Normal file
@ -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"
|
56
i18n/lt.po
Normal file
56
i18n/lt.po
Normal file
@ -0,0 +1,56 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# Antanas Muliuolis <an.muliuolis@gmail.com>, 2023
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 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 <digitouchagencyeur@gmail.com>, 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 ""
|
55
i18n/lv.po
Normal file
55
i18n/lv.po
Normal file
@ -0,0 +1,55 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# JanisJanis <jbojars@gmail.com>, 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 <jbojars@gmail.com>, 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 ""
|
55
i18n/nl.po
Normal file
55
i18n/nl.po
Normal file
@ -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"
|
57
i18n/pl.po
Normal file
57
i18n/pl.po
Normal file
@ -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 <b>Pierwszy.</b>"
|
||||
|
||||
#. 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"
|
55
i18n/pt.po
Normal file
55
i18n/pt.po
Normal file
@ -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 ""
|
55
i18n/pt_BR.po
Normal file
55
i18n/pt_BR.po
Normal file
@ -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"
|
57
i18n/ru.po
Normal file
57
i18n/ru.po
Normal file
@ -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"
|
55
i18n/sk.po
Normal file
55
i18n/sk.po
Normal file
@ -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 ""
|
55
i18n/sl.po
Normal file
55
i18n/sl.po
Normal file
@ -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 ""
|
56
i18n/sr.po
Normal file
56
i18n/sr.po
Normal file
@ -0,0 +1,56 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing_sms
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 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"
|
58
i18n/sv.po
Normal file
58
i18n/sv.po
Normal file
@ -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 <kim.asplund@gmail.com>, 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 <kim.asplund@gmail.com>, 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 ""
|
56
i18n/th.po
Normal file
56
i18n/th.po
Normal file
@ -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"
|
58
i18n/tr.po
Normal file
58
i18n/tr.po
Normal file
@ -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ş <ertugrulg@projetgrup.com>, 2023
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 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"
|
57
i18n/uk.po
Normal file
57
i18n/uk.po
Normal file
@ -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 <alina.lisnenko@erp.co.ua>, 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 <alina.lisnenko@erp.co.ua>, 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"
|
55
i18n/vi.po
Normal file
55
i18n/vi.po
Normal file
@ -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 ""
|
51
i18n/website_mass_mailing_sms.pot
Normal file
51
i18n/website_mass_mailing_sms.pot
Normal file
@ -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 ""
|
55
i18n/zh_CN.po
Normal file
55
i18n/zh_CN.po
Normal file
@ -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"
|
55
i18n/zh_TW.po
Normal file
55
i18n/zh_TW.po
Normal file
@ -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 ""
|
29
views/snippets/snippets_templates.xml
Normal file
29
views/snippets/snippets_templates.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="s_newsletter_block_sms_template" groups="base.group_user">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 offset-lg-2 pt24 pb24">
|
||||
<h2>Always First.</h2>
|
||||
<p>Be the first to find out all the latest news, products, and trends.</p>
|
||||
<div class="s_newsletter_subscribe_form s_subscription_list js_subscribe" data-vxml="001" data-list-id="0" data-name="Newsletter Form">
|
||||
<div class="input-group">
|
||||
<!-- input name must be an existing 'mailing.contact' field -->
|
||||
<input type="tel" name="mobile" class="js_subscribe_value form-control" placeholder="e.g. +1 555-555-1234"/>
|
||||
<a role="button" href="#" class="btn btn-primary js_subscribe_btn o_submit">Subscribe</a>
|
||||
<a role="button" href="#" class="btn btn-success js_subscribed_btn d-none o_submit" disabled="disabled">Thanks</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="newsletter_subscribe_options" name="Newsletter Subscribe Options" inherit_id="website.snippet_options">
|
||||
<xpath expr="//div[@data-js='NewsletterLayout']/we-select/we-button[@data-select-data-attribute='email']" position="after">
|
||||
<we-button title="SMS Newsletter" string="SMS Subscription"
|
||||
data-select-template="website_mass_mailing_sms.s_newsletter_block_sms_template"
|
||||
data-select-data-attribute="sms" data-name="sms_opt"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user