Начальное наполнение
This commit is contained in:
parent
c873093f80
commit
ceff67a582
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
37
__manifest__.py
Normal file
37
__manifest__.py
Normal file
@ -0,0 +1,37 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Newsletter Subscribe Button',
|
||||
'summary': 'Attract visitors to subscribe to mailing lists',
|
||||
'description': """
|
||||
This module brings a new building block with a mailing list widget to drop on any page of your website.
|
||||
On a simple click, your visitors can subscribe to mailing lists managed in the Email Marketing app.
|
||||
""",
|
||||
'version': '1.0',
|
||||
'category': 'Website/Website',
|
||||
'depends': ['website', 'mass_mailing', 'google_recaptcha'],
|
||||
'data': [
|
||||
'data/ir_model_data.xml',
|
||||
'views/snippets/s_popup.xml',
|
||||
'views/snippets_templates.xml',
|
||||
],
|
||||
'auto_install': ['website', 'mass_mailing'],
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'website_mass_mailing/static/src/scss/website_mass_mailing_popup.scss',
|
||||
'website_mass_mailing/static/src/js/website_mass_mailing.js',
|
||||
'website_mass_mailing/static/src/xml/*.xml',
|
||||
],
|
||||
'website.assets_wysiwyg': [
|
||||
'website_mass_mailing/static/src/js/website_mass_mailing.editor.js',
|
||||
'website_mass_mailing/static/src/js/mass_mailing_form_editor.js',
|
||||
'website_mass_mailing/static/src/scss/website_mass_mailing_edit_mode.scss',
|
||||
'website_mass_mailing/static/src/snippets/s_popup/options.js',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'website_mass_mailing/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
5
controllers/__init__.py
Normal file
5
controllers/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
from . import website_form
|
66
controllers/main.py
Normal file
66
controllers/main.py
Normal file
@ -0,0 +1,66 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import tools, _
|
||||
from odoo.http import route, request
|
||||
from odoo.addons.mass_mailing.controllers import main
|
||||
|
||||
|
||||
class MassMailController(main.MassMailController):
|
||||
|
||||
@route('/website_mass_mailing/is_subscriber', type='json', website=True, auth='public')
|
||||
def is_subscriber(self, list_id, subscription_type, **post):
|
||||
value = self._get_value(subscription_type)
|
||||
fname = self._get_fname(subscription_type)
|
||||
is_subscriber = False
|
||||
if value and fname:
|
||||
contacts_count = request.env['mailing.subscription'].sudo().search_count(
|
||||
[('list_id', 'in', [int(list_id)]), (f'contact_id.{fname}', '=', value), ('opt_out', '=', False)])
|
||||
is_subscriber = contacts_count > 0
|
||||
|
||||
return {'is_subscriber': is_subscriber, 'value': value}
|
||||
|
||||
def _get_value(self, subscription_type):
|
||||
value = None
|
||||
if subscription_type == 'email':
|
||||
if not request.env.user._is_public():
|
||||
value = request.env.user.email
|
||||
elif request.session.get('mass_mailing_email'):
|
||||
value = request.session['mass_mailing_email']
|
||||
return value
|
||||
|
||||
def _get_fname(self, subscription_type):
|
||||
return 'email' if subscription_type == 'email' else ''
|
||||
|
||||
@route('/website_mass_mailing/subscribe', type='json', website=True, auth='public')
|
||||
def subscribe(self, list_id, value, subscription_type, **post):
|
||||
if not request.env['ir.http']._verify_request_recaptcha_token('website_mass_mailing_subscribe'):
|
||||
return {
|
||||
'toast_type': 'danger',
|
||||
'toast_content': _("Suspicious activity detected by Google reCaptcha."),
|
||||
}
|
||||
|
||||
ContactSubscription = request.env['mailing.subscription'].sudo()
|
||||
Contacts = request.env['mailing.contact'].sudo()
|
||||
if subscription_type == 'email':
|
||||
name, value = tools.parse_contact_from_email(value)
|
||||
elif subscription_type == 'mobile':
|
||||
name = value
|
||||
|
||||
fname = self._get_fname(subscription_type)
|
||||
subscription = ContactSubscription.search(
|
||||
[('list_id', '=', int(list_id)), (f'contact_id.{fname}', '=', value)], limit=1)
|
||||
if not subscription:
|
||||
# inline add_to_list as we've already called half of it
|
||||
contact_id = Contacts.search([(fname, '=', value)], limit=1)
|
||||
if not contact_id:
|
||||
contact_id = Contacts.create({'name': name, fname: value})
|
||||
ContactSubscription.create({'contact_id': contact_id.id, 'list_id': int(list_id)})
|
||||
elif subscription.opt_out:
|
||||
subscription.opt_out = False
|
||||
# add email to session
|
||||
request.session[f'mass_mailing_{fname}'] = value
|
||||
return {
|
||||
'toast_type': 'success',
|
||||
'toast_content': _("Thanks for subscribing!"),
|
||||
}
|
26
controllers/website_form.py
Normal file
26
controllers/website_form.py
Normal file
@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
|
||||
from odoo import _
|
||||
from odoo.http import request
|
||||
from odoo.addons.website.controllers.form import WebsiteForm
|
||||
|
||||
|
||||
class WebsiteNewsletterForm(WebsiteForm):
|
||||
|
||||
def _handle_website_form(self, model_name, **kwargs):
|
||||
if model_name == 'mailing.contact':
|
||||
list_ids = kwargs.get('list_ids')
|
||||
if not list_ids:
|
||||
return json.dumps({'error': _('Mailing List(s) not found!')})
|
||||
list_ids = [int(x) for x in list_ids.split(',')]
|
||||
private_list_ids = request.env['mailing.list'].sudo().search([
|
||||
('id', 'in', list_ids), ('is_public', '=', False)])
|
||||
if private_list_ids:
|
||||
return json.dumps({
|
||||
'error': _('You cannot subscribe to the following list anymore : %s',
|
||||
', '.join(private_list_ids.mapped('name')))
|
||||
})
|
||||
return super()._handle_website_form(model_name, **kwargs)
|
23
data/ir_model_data.xml
Normal file
23
data/ir_model_data.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="mass_mailing.model_mailing_contact" model="ir.model">
|
||||
<field name="website_form_key">create_mailing_contact</field>
|
||||
<field name="website_form_access">True</field>
|
||||
<field name="website_form_label">Subscribe to Newsletter</field>
|
||||
</record>
|
||||
|
||||
<function model="ir.model.fields" name="formbuilder_whitelist">
|
||||
<value>mailing.contact</value>
|
||||
<value eval="[
|
||||
'name',
|
||||
'company_name',
|
||||
'title_id',
|
||||
'email',
|
||||
'list_ids',
|
||||
'country_id',
|
||||
'tag_ids',
|
||||
]"/>
|
||||
</function>
|
||||
</data>
|
||||
</odoo>
|
277
i18n/ar.po
Normal file
277
i18n/ar.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" شكراً لاشتراكك! "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">أوافق على تلقي التحديثات</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span> "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">الاشتراك في</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span> "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">بريدك الإلكتروني</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span> "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">اسمك</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span> "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "دائماً <b>الأول</b>. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "دائماً الأول "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "كن أول من تصله أحدث الأخبار، المنتجات، والتوجهات. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "كن أول من تصله أحدث الأخبار،<br/> المنتجات، والتوجهات. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "إغلاق"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "الشركات"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "جهة الاتصال"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "عرض زر شكراً "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "اشتراك البريد الإلكتروني "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "من الاشتراك "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "لم يتم العثور على القائمة (القوائم) البريدية! "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "النشرة الأخبارية "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "الكتلة البنائية للنشرة الإخبارية "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "نافذة النشرة الإخبارية المنبثقة "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"لم يتم العثور على قائمة بريدية، هل ترغب في إنشاء واحدة؟ سيقوم ذلك بحفظ كافة "
|
||||
"التغييرات، هل أنت متأكد من أنك ترغب في المتابعة؟ "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "إظها سياسة reCaptcha "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "اشتراك"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "الاشتراك في "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "النجاح"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "تم استشعار نشاط مريب عن طريق Google reCaptcha. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "القالب "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "شكراً "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "شكراً لك على اشتراكك! "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"نقوم بإرسال نشرة إخبارية واحدة أسبوعياً لكل قائمة، ونحاول دائماً أن نجعلها "
|
||||
"مثيرة للاهتمام. يمكنك إلغاء اشتراكك في أي وقت. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "لا يمكنك الاشتراك في هذه القائمة بعد الآن: %s "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "ستكون على علم دائماً بآخر الأخبار. <br/> "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "بريدك الإلكتروني "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "اسمك"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "بريدك الإلكتروني..."
|
254
i18n/az.po
Normal file
254
i18n/az.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Həmişə Birinci."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Bağlayın"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Şirkətlər"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Xəta"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Bülleten"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Pop-up Pəncərədə Xəbər Bülleteni"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abunə olun"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Şablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Təşəkkür edirik"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Sizin Elektron Poçtunuz"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Adınız"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "sizin emailiniz..."
|
266
i18n/bg.po
Normal file
266
i18n/bg.po
Normal file
@ -0,0 +1,266 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# KeyVillage, 2023
|
||||
# Kaloyan Naumov <kaloyan@lumnus.net>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# kirily <kiril@teracomp.eu>, 2023
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Фирми"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Грешка"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Новинарски бюлетин"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Абонирайте се "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Успех"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Благодаря"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Вашият имейл"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Вашето име"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Вашият имейл..."
|
253
i18n/bs.po
Normal file
253
i18n/bs.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
286
i18n/ca.po
Normal file
286
i18n/ca.po
Normal file
@ -0,0 +1,286 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# jabiri7, 2023
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# marcescu, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# martioodo hola, 2023
|
||||
# M Palau <mpalau@tda.ad>, 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: M Palau <mpalau@tda.ad>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".onewsletterpopup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".snewsletterblock .snewsletterlist, .onewsletterpopup .snewsletterlist"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".snewsletterlist"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Accepto rebre actualitzacions</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Subscriu a</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">El vostre correu electrònic</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">El vostre nom</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Sempre <b>Primer</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Sempre Primer"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Sigueu els primers a esbrinar totes les últimes notícies,<br/> productes i "
|
||||
"tendències."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Tancar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empreses"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Mostra el botó d'agraïment"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Subscripció per correu electrònic"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Subscripció al formulari"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "No s'han trobat les llistes() de correu!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Butlletí de notícies"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Bloc de Butlletí"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Butlletí de notícies emergent"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"No s'ha trobat cap llista de correu, vols crear-ne una de nova? Això "
|
||||
"estalviarà tots els canvis, està segur que vol continuar?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Mostra la política de reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscriure's"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Subscriu a"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Èxit"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Activitat sospitosa detectada per Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gràcies"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Gràcies per subscriure!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Enviem un butlletí setmanal per llista i sempre intentem mantenir-lo "
|
||||
"interessant. Pots donar-te de baixa en qualsevol moment."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Ja no us podeu subscriure a la llista següent: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Ara se us informarà sobre les últimes notícies.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "El vostre correu electrònic"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "El vostre nom"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "correu electrònic"
|
277
i18n/cs.po
Normal file
277
i18n/cs.po
Normal file
@ -0,0 +1,277 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21: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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Souhlasím se zasíláním aktualizací</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Přihlásit se k odběru</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Váš e-mail</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Vaše jméno</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Vždy <b>První</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Vždy první."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Buďte první, kdo se dozví všechny nejnovější zprávy,<br/> produkty a trendy."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Společnosti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Zobrazit tlačítko Poděkování"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Předplatné e-mailem"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formulář předplatného"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "E-mailové seznam(y) nebyl(y) nalezen(y)!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Blok newsletteru"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Vyskakovací okno zpravodaje"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Nenašel se žádný e-mailový seznam, chcete vytvořit nový? Všechny vaše změny "
|
||||
"se uloží, skutečně chcete pokračovat?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Zobrazit zásady reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Odebírat"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Přihlásit se k odběru"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Úspěch"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha zjistil podezřelou aktivitu."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Předloha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Díky"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Děkujeme za přihlášení!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Na každý seznam posíláme jeden týdenní zpravodaj a vždy se snažíme, aby byl "
|
||||
"zajímavý. Z odběru se můžete kdykoli odhlásit."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Již se nemůžete přihlásit k odběru následujícího seznamu : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Nyní budete informováni o nejnovějších novinkách.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Váš e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Vaše jméno"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "váš e-mail..."
|
268
i18n/da.po
Normal file
268
i18n/da.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 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: Sanne Kristensen <sanne@vkdata.dk>, 2024\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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Din e-mail</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Dit navn</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Altid <b>Først</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Altid først."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Bliv den første til at få de seneste nyheder,<br/> produkter, og trends."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Virksomheder"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Nyhedsbrev"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Nyhedsbrev pop-up"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Vis reCaptcha Police"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Tilmeld"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Succes"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Mistænkelig aktivitet registreret af Google reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Skabelon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Tak"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Tak for du abonnere!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Din e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Dit navn"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "din e-mail..."
|
281
i18n/de.po
Normal file
281
i18n/de.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Danke fürs Abonnieren!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ich bin damit einverstanden, Updates zu erhalten</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Abonnieren von</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ihre E-Mail</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ihr Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Immer <b>ganz vorn dabei</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Immer ganz vorn dabei."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Seien Sie der Erste, der über die neuesten Nachrichten,<br/> Produkte und "
|
||||
"Trends informiert wird."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "„Danke“-Schaltfläche anzeigen"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "E-Mail-Abonnement"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Abonnementformular"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Mailingliste(n) nicht gefunden!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Newsletter-Baustein"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Newsletter-Pop-up"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Keine Mailingliste gefunden, möchten Sie eine neue erstellen? All Ihre "
|
||||
"Änderungen werden gespeichert, möchten Sie fortfahren?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "reCaptcha-Richtlinie anzeigen"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonnieren"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Abonnieren von"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Erfolgreich"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Verdächtige Aktivität von Google reCaptcha erkannt."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Vorlage"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Dankeschön"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Vielen Dank für Ihr Abonnement!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Wir versenden einen wöchentlichen Newsletter pro Liste und versuchen immer, "
|
||||
"ihn interessant zu gestalten. Sie können sich jederzeit wieder abmelden."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Sie können sich für die folgende Liste nicht mehr anmelden: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Sie werden nun über die neuesten Nachrichten informiert.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Ihre E-Mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Ihr Name"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Ihre E-Mail ..."
|
254
i18n/el.po
Normal file
254
i18n/el.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Επαφή"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Εγγραφή"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Ευχαριστούμε"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "το emails σας..."
|
282
i18n/es.po
Normal file
282
i18n/es.po
Normal file
@ -0,0 +1,282 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" ¡Gracias por suscribirse!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Estoy de acuerdo en recibir actualizaciones</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Suscribir a</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Su correo electrónico</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Su nombre</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Siempre <b>primero</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Siempre primero."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Sea el primero en enterarse de las últimas novedades,<br/> productos y "
|
||||
"tendencias."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Compañías"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Mostrar el botón de agradecimiento"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Suscripción por correo electrónico"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formulario de suscripción"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "¡Lista(s) de correo no encontrada(s)!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Bloque de boletín"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup de Noticia"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"No se ha encontrado ninguna lista de correo, ¿desea crear una nueva? Esto "
|
||||
"guardará todos sus cambios, ¿está seguro de que desea continuar?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Mostrar la política de reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribirse"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Suscribirse a"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Aceptada"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Actividad sospechosa detectada por Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gracias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Gracias por suscribirse!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Enviamos un boletín de noticias semanal por lista y siempre intentamos que "
|
||||
"sea interesante. Puede anular la suscripción en cualquier momento."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Ya no se puede suscribir a la siguiente lista: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Ahora estará al tanto de las últimas noticias. <br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Su correo electrónico"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Su nombre"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su correo electrónico..."
|
281
i18n/es_419.po
Normal file
281
i18n/es_419.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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: 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" ¡Gracias por suscribirse!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Estoy de acuerdo en recibir noticias</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Suscribirse a</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Su correo electrónico</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Su nombre</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Siempre <b>primero</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Siempre primero."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Sea el primero en enterarse de las últimas novedades,<br/> productos y "
|
||||
"tendencias."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Mostrar el botón de agradecimiento"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Suscripción por correo electrónico"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formulario de suscripción"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "¡Lista(s) de correo no encontrada(s)!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Bloque de boletín"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Ventana emergente de boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"No se ha encontrado ninguna lista de correo, ¿desea crear una nueva? Esto "
|
||||
"guardará todos sus cambios, ¿está seguro de que desea continuar?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Mostrar la política de reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribirse"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Suscribirse a"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Aprobada"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Actividad sospechosa detectada por Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Plantilla"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gracias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "¡Gracias por suscribirse!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Enviamos un boletín de noticias semanal por lista y siempre intentamos que "
|
||||
"sea interesante. Puede anular la suscripción en cualquier momento."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Ya no se puede suscribir a la siguiente lista: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Ahora estará al tanto de las últimas noticias. <br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Su correo electrónico"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Su nombre"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su correo electrónico..."
|
254
i18n/es_CO.po
Normal file
254
i18n/es_CO.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016
|
||||
# Felipe Palomino <omega@nubark.com>, 2016
|
||||
# Mateo Tibaquirá <nestormateo@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-02-16 22:01+0000\n"
|
||||
"Last-Translator: Felipe Palomino <omega@nubark.com>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/language/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín Informativo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribirme"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gracias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su correo electrónico..."
|
251
i18n/es_CR.po
Normal file
251
i18n/es_CR.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2015-09-08 10:37+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-9/language/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribir"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
251
i18n/es_DO.po
Normal file
251
i18n/es_DO.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-05-18 22:58+0000\n"
|
||||
"Last-Translator: Juliano Henriquez <juliano@consultoriahenca.com>\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/odoo-9/language/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín Informativo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribirme"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gracias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su correo electrónico..."
|
254
i18n/es_EC.po
Normal file
254
i18n/es_EC.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Alejandro Die Sanchis <marketing@domatix.com>, 2015
|
||||
# Paloma Yazmin Reyes Morales <paloma.reyes@jarsa.com.mx>, 2015
|
||||
# Rick Hunter <rick_hunter_ec@yahoo.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-01-20 23:00+0000\n"
|
||||
"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/language/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribir"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Agradecimientos"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su correo electrónico..."
|
252
i18n/es_PE.po
Normal file
252
i18n/es_PE.po
Normal file
@ -0,0 +1,252 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-06-13 20:38+0000\n"
|
||||
"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribirse"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Gracias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "su email..."
|
251
i18n/es_VE.po
Normal file
251
i18n/es_VE.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-03-01 12:03+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/odoo/odoo-9/language/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletín de noticias"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Suscribir"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
287
i18n/et.po
Normal file
287
i18n/et.po
Normal file
@ -0,0 +1,287 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Piia Paurson <piia@avalah.ee>, 2023
|
||||
# Egon Raamat <egon@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2023
|
||||
# JanaAvalah, 2023
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Aitäh tellimuse eest!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ma nõustun saama uudikirju</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Telli</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Sinu e-post</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Sinu nimi</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Alati <b>esimene</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Alati esimene."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Ole esimene, kes saab teada kõikidest viimastest uudistest,<br/> toodetest "
|
||||
"ja trendidest."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Sulge"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Ettevõtted"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Kuva Tänan nuppu"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Uudiskirja tellimus"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Viga"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Vormi tellimus"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Meililisti(e) ei leitud."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Uudiskiri"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Uudiskirja plokk"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Infolehe pop-up"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"E-maili loendit ei ole leitud, kas soovite luua uue loendi? See salvestab "
|
||||
"kõik Teie muudatused, kas olete kindel, et soovite jätkata?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Kuva reCaptcha poliitika"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Telli"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Tellige"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Edukas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha tuvastas kahtlase tegevuse."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Mall"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Aitäh"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Aitäh tellimise eest!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Saadame iga nädal ühe uudiskirja ja püüame seda alati huvitavana hoida. "
|
||||
"Võite igal ajal tellimusest loobuda."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Te ei saa enam järgmist nimekirja tellida : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Nüüd saate teavet viimaste uudiste kohta.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Sinu e-post"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Sinu nimi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Sinu e-posti aadress..."
|
265
i18n/fa.po
Normal file
265
i18n/fa.po
Normal file
@ -0,0 +1,265 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Ali Reza Feizi Derakhshi, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ghasem yaghoubi <y.ghasem@gmail.com>, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 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: Hanna Kheradroosta, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "بستن"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "شرکتها"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "مخاطب"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "خبرنامه"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "خبرنامه جهنده"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "عضویت"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "موفقیت"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "پوسته"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "با تشکر"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "ایمیل شما"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "نام"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
285
i18n/fi.po
Normal file
285
i18n/fi.po
Normal file
@ -0,0 +1,285 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Miika Nissi <miika.nissi@tawasta.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
# Teija Hölttä <teija.holtta@gmail.com>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@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: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Suostun vastaanottamaan päivityksiä</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Tilaa</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Sähköpostiosoitteesi</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Nimesi</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Aina <b>Ensimmäinen</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Aina ensimmäinen."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Ole ensimmäinen, joka saa selville kaikki uusimmat uutiset,<br/> tuotteet ja"
|
||||
" trendit."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Yritykset"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Näytä Kiitos-painike"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Sähköpostitilaus"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Lomakkeen tilaus"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Postituslistaa ei löytynyt!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Uutiskirje"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Uutiskirjeen lohko"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Uutiskirje-ponnahdusikkuna"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Postituslistaa ei löytynyt, haluatko luoda uuden? Tämä tallentaa kaikki "
|
||||
"muutokset, haluatko varmasti jatkaa?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Näytä reCaptcha-käytänteet"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Tilaa"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Tilaa"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Onnistuminen"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha on havainnut epäilyttävää toimintaa."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Malli"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Kiitos"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Kiitos tilauksestasi!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Lähetämme yhden viikoittaisen uutiskirjeen listaa kohden ja pyrimme aina "
|
||||
"pitämään sen mielenkiintoisena. Voit peruuttaa uutiskirjeen milloin tahansa."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Et voi enää tilata seuraavaa listaa : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Saat nyt tietoa viimeisimmistä uutisista.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Sähköpostisi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Nimesi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "sähköpostisi..."
|
281
i18n/fr.po
Normal file
281
i18n/fr.po
Normal file
@ -0,0 +1,281 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Merci de vous être abonné !"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">J'accepte de recevoir des mises à jour</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">S'abonner à</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Votre email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Votre nom</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Toujours le <b>premier</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Restez informés !"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Soyez le premier à découvrir toutes les dernières nouvelles, <br/>produits "
|
||||
"et tendances."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Sociétés"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Afficher le bouton de remerciement"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Abonnement par email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Abonnement par formulaire"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Liste(s) de diffusion non trouvée(s) !"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Bloc newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Fenêtre contextuelle newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Aucune liste de diffusion trouvée, voulez-vous en créer une nouvelle ? Cela "
|
||||
"enregistrera toutes vos modifications, êtes-vous sûr de vouloir continuer ?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Afficher la politique reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "S'inscrire"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "S'abonner à"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Réussite"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Activité suspecte détectée par Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Modèle"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Merci"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Merci de vous être abonné !"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Nous envoyons une newsletter hebdomadaire par liste et essayons toujours de "
|
||||
"la garder intéressante. Vous pouvez vous désabonner à tout moment."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Vous ne pouvez plus vous abonner à la liste suivante : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Vous serez désormais informé des dernières nouveautés.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Votre email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Votre nom"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "votre adresse email..."
|
253
i18n/gu.po
Normal file
253
i18n/gu.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Companies"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "ઉમેદવારી નોંધાવો"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Template"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
269
i18n/he.po
Normal file
269
i18n/he.po
Normal file
@ -0,0 +1,269 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# NoaFarkash, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2023
|
||||
# Netta Waizer, 2023
|
||||
# Martin Trigaux, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "תמיד <b>ראשון</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "תמיד ראשון."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "היו הראשונים לגלות את כל החדשות, המוצרים והמגמות."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "היו הראשונים לגלות את כל החדשות, <br/> המוצרים והמגמות."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "סגור"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "חברות"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "איש קשר"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "הצגת כפתור תודה"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "דיוור"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "דיוור (ניוזלטר) קופץ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"לא נמצאו רשימות תפוצה. האם ליצור אחת? זה ישמור את כל השינויים, האם ברצונך "
|
||||
"להמשיך?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "הצג את מדיניות reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "הירשם כמנוי"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "הצלחה"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "פעילות חשודה זוהתה על ידי Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "תבנית"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "תודה"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "תודה שנרשמת!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "הדוא\"ל שלך"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "השם שלך"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "הדוא\"ל שלך..."
|
257
i18n/hr.po
Normal file
257
i18n/hr.po
Normal file
@ -0,0 +1,257 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Tina Milas, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Tina Milas, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Tvrtke"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Bilten"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Pretplatite se"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Uspjeh"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Predložak"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Hvala"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Vaš e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Vaše ime ..."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Vaš e-mail..."
|
266
i18n/hu.po
Normal file
266
i18n/hu.po
Normal file
@ -0,0 +1,266 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Gergő Kertész <gergo.kertesz@maxflow.hu>, 2023
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2023
|
||||
# krnkris, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Dombos, 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: Tamás Dombos, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Vállalatok"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Hírlevél"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Feliratkozás"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Siker"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Sablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Köszönettel"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Köszönjük a feliratkozást!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Az Ön e-mail címe"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Az Ön neve"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "emailje..."
|
279
i18n/id.po
Normal file
279
i18n/id.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Terima kasih sudah berlangganan!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Saya setuju untuk menerima update</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Berlangganan ke</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Email Anda</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Email Anda</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Selalu <b>Pertama</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Selalu Pertama."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Jadilah yang pertama mendapatkan semua berita,<br/> produk, dan trend."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Tombol Tampilkan Terima Kasih"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Langganan Email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Error!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formulir Langganan"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Mailing List tidak ditemukan!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Surat kabar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Newsletter Block"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup Buletin"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Tidak ada milis yang ditemukan, apakah Anda ingin membuat satu sekarang? Ini"
|
||||
" akan menyimpan semua perubahan Anda, apakah Anda yakin ingin melanjutkan?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Tunjukkan Kebijakan reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Langganan"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Berlangganan ke"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Sukses"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Kegiatan mencurigakan dideteksi oleh Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Template"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Terima kasih"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Terima kasih sudah berlangganan!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Kami mengirimkan satu buletin mingguan untuk setiap daftar dan kami selalu "
|
||||
"mencoba agar buletin menarik. Anda dapat berhenti berlangganan kapan saja."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Anda tidak dapat lagi berlangganan ke daftar berikut : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Anda sekarang akan diberitahukan mengenai berita terkini.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Email Anda"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Nama Anda"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "email anda..."
|
249
i18n/is.po
Normal file
249
i18n/is.po
Normal file
@ -0,0 +1,249 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Tengiliður"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
279
i18n/it.po
Normal file
279
i18n/it.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Grazie per essere registrato!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Accetto di ricevere aggiornamenti</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Iscriviti a</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">La tua e-mail</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Nome</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Sempre <b>Primo</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Sempre in testa."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Sii il primo a scoprire tutte le ultime novità, <br/> prodotti e tendenze."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Aziende"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Visualizza pulsante Grazie"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Iscrizione via e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Iscrizione via modulo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Mailing list non trovata/e!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Finestra a comparsa newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Nessuna mailing list trovata, vuoi crearne una nuova? Questo salverà tutte "
|
||||
"le tue modifiche, sei sicuro di voler procedere?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Mostra politica di reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Iscriviti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Iscriviti a"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Successo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Il reCAPTCHA Google ha rilevato un'attività sospetta."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Modello"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Grazie"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Grazie per l'iscrizione!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Inviamo la newsletter una volta a settimana, per ogni lista e cerchiamo "
|
||||
"sempre di renderla interessante. Puoi annullare l'iscrizione in qualsiasi "
|
||||
"momento."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Non puoi più iscriverti alla seguente lista: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Adesso verrai informato sulle ultime novità.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "E-mail..."
|
273
i18n/ja.po
Normal file
273
i18n/ja.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" ご登録ありがとうございます!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">最新情報を受け取ることに同意します</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">以下に登録:</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Eメール</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">氏名</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "常に<b>一番</b>。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "常に一番。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "最新ニュース、製品、トレンドをいち早くお届けします。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "最新ニュース、<br/>製品、トレンドをいち早くお届けします。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "会社"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "連絡先"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "ありがとうボタンを表示"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Eメールサブスクリプション"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "フォームサブスクリプション"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "メーリングリストが見つかりません。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "ニュースレター"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "ニュースレターブロック"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "ニュースレターポップアップ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr "メーリングリストが見つかりません。新しく作成しますか?これですべての変更が保存されます。本当に続けますか?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "reCaptchaポリシーを表示"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "購読"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "以下を購読:"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "成功"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptchaが疑わしいアクティビティを検知しました。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "テンプレート"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "ありがとうございます"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "ご登録ありがとうございます!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr "各リストにつき、週1回ニュースレターを配信しています。配信停止はいつでも可能です。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "以下のリストに登録できなくなりました:%s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "最新の情報をお届けします。<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Eメール"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "お名前"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "あなたのメールアドレス..."
|
251
i18n/kab.po
Normal file
251
i18n/kab.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-03-06 11:05+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Izen n telɣut"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Multeɣ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Tanemirt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Imayl-inek..."
|
252
i18n/km.po
Normal file
252
i18n/km.po
Normal file
@ -0,0 +1,252 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:18+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "ទំនាក់ទំនង"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
273
i18n/ko.po
Normal file
273
i18n/ko.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" 구독해 주셔서 감사합니다!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">업데이트 알림 수신에 동의합니다.</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">구독하기</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">이메일</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">이름</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "항상 <b>첫 번째</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "항상 첫번째로."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "모든 최신 뉴스, 제품 및 트렌드를 가장 먼저 확인하세요."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "모든 최신 뉴스, <br/>제품 및 트렌드를 가장 먼저 확인하세요."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "회사"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "연락처"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "감사 버튼 표시"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "이메일 구독"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "서식 구독"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "메일링 리스트를 찾을 수 없습니다!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "뉴스레터"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "뉴스레터 블록"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "뉴스레터 팝업"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr "메일링 리스트를 찾을 수 없습니다. 새 메일링 리스트를 생성하시겠습니까? 진행 시 모든 변경 사항이 저장됩니다."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "reCaptcha 정책 표시"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "구독"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "구독하기"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "성공"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "구글 reCaptcha에서 의심스러운 활동이 감지되었습니다."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "서식"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "감사합니다"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "구독해 주셔서 감사합니다!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr "매주 한 번씩 알찬 내용으로 가득 찬 뉴스레터를 보내드립니다. 원하실 경우 언제든지 구독을 취소할 수 있습니다."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "더 이상 다음 목록을 구독할 수 없습니다 : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "이제 최신 뉴스에 대한 알림을 받으실 수 있습니다.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "이메일"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "성명"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "귀하의 이메일..."
|
249
i18n/lb.po
Normal file
249
i18n/lb.po
Normal file
@ -0,0 +1,249 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:16+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
268
i18n/lt.po
Normal file
268
i18n/lt.po
Normal file
@ -0,0 +1,268 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Arminas Grigonis <arminas@versada.lt>, 2023
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2023
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
# Antanas Muliuolis <an.muliuolis@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: Antanas Muliuolis <an.muliuolis@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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Uždaryti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Įmonės"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Klaida"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Naujienlaiškis"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Iššokantis naujienlaikraščio pranešimas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Rodyti \"reCaptcha\" politiką"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Prenumeruoti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Pavyko"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "\"Google reCaptcha\" aptiko įtartina veikla."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Šablonas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Ačiū"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Jūsų el. pašto adresas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Jūsų vardas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "jūsų el. paštas..."
|
267
i18n/lv.po
Normal file
267
i18n/lv.po
Normal file
@ -0,0 +1,267 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Anzelika Adejanova, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Jūsu e-pasts</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Aizvērt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Uzņēmumi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontaktpersona"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Kļūda"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Izziņošana"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonēt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Panākumi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Sagatave"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Jūsu e-pasts"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Jūsu vārds un uzvārds"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Jūsu e-pasts..."
|
256
i18n/mk.po
Normal file
256
i18n/mk.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2016-07-12 10:58+0000\n"
|
||||
"Last-Translator: Aleksandar Vangelovski <aleksandarv@hbee.eu>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
"#-#-#-#-# mk.po (Odoo 9.0) #-#-#-#-#\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Билтен"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Претплати се"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Благодариме"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "ваш е-маил..."
|
256
i18n/mn.po
Normal file
256
i18n/mn.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Otgonbayar.A <gobi.mn@gmail.com>, 2022
|
||||
# Minj P <pminj322@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# hish, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: hish, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Хаах"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Компаниуд"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Харилцах хаяг"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Алдаа"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Сонин"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Бүртгүүлэх"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Амжилттай"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Загвар"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Баярлалаа"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Таны имэйл"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Таны нэр"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "таны имэйл..."
|
255
i18n/nb.po
Normal file
255
i18n/nb.po
Normal file
@ -0,0 +1,255 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jorunn D. Newth, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Firmaer"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Feil"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Nyhetsbrev"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Nyhetsbrev-popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonner"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Suksess"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Mal"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Takk"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Takk for at du abonnerer!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "E-postadressen din"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "din e-post..."
|
278
i18n/nl.po
Normal file
278
i18n/nl.po
Normal file
@ -0,0 +1,278 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Bedankt voor je inschrijving!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ik ga akkoord met het ontvangen van updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Abonneren op</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Je Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Je Naam</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Altijd als <b>eerste</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Altijd eerst."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Wees de eerste die het laatste nieuws,<br/> producten en trends ontdekt."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Bedrijven"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Weergeven bedanktknop"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "E-mail abonnement"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formulier abonnement"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Mailinglijst(en) niet gevonden!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Nieuwsbrief"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Nieuwsbrief blok"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Nieuwsbrief pop-up"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Geen mailinglijst gevonden, wil je een nieuwe aanmaken? Hiermee worden al je"
|
||||
" wijzigingen opgeslagen. Weet je zeker dat je wilt doorgaan?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Laat reCaptcha beleid zien."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Inschrijven"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Abonneren op"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Succes"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Verdachte activiteit gedetecteerd door Google reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Sjabloon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Bedankt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Bedankt voor je aanmelding!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Wij versturen wekelijks een nieuwsbrief per lijst en proberen deze altijd "
|
||||
"interessant te houden. Je kunt zich altijd afmelden."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Je kunt zich niet meer abonneren op de volgende lijst : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Je wordt nu geïnformeerd over het laatste nieuws.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Je e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Je naam"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "je e-mail..."
|
279
i18n/pl.po
Normal file
279
i18n/pl.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Wyrażam zgodę na otrzymywanie aktualizacji</span>\n"
|
||||
"<span class=\"s_website_form_mark\">*</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Subskrybuj</span>\n"
|
||||
"<span class=\"s_website_form_mark\">*</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Twój e-mail</span>\n"
|
||||
"<span class=\"s_website_form_mark\">*</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Twoje nazwisko</span>\n"
|
||||
"<span class=\"s_website_form_mark\">*</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Zawsze <b>Pierwszy.</b>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Zawsze <b>Pierwszy.</b>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Bądź pierwszym,<br/>by dowieć się o wszystkich nowościach, <br/>produktach i"
|
||||
" trendach."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Firmy"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Wyświetl przycisk Podziękowania"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Subskrypcja e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Formularz subskrypcji"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Nie znaleziono listy(y) mailingowej!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Biuletyn"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Blok newslettera"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup newslettera"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Nie znaleziono listy mailingowej - należy utworzyć nową.Spowoduje to "
|
||||
"zapisanie obecnych zmian. Czy chcesz kontunuować?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Polityka korzystania z weryfikacji"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Zaprenumeruj"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Subskrybuj"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Powodzenie"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Podejrzana aktywność wykryta przez weryfikator Google"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Szablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Dziękuję"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Dziękuję za prenumeratę!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Wysyłamy jeden tygodniowy newsletter na listę i zawsze staramy się, aby był "
|
||||
"on interesujący. W każdej chwili możesz zrezygnować z subskrypcji."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Nie można już zapisać się na następującą listę : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Teraz będziesz informowany o najnowszych wiadomościach.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Twój email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Twoja nazwa"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "twój adres..."
|
261
i18n/pt.po
Normal file
261
i18n/pt.po
Normal file
@ -0,0 +1,261 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Boletim Informativo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscrever"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Sucesso"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Obrigado"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "O Seu Email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "O Seu Nome"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "o seu e-mail"
|
278
i18n/pt_BR.po
Normal file
278
i18n/pt_BR.po
Normal file
@ -0,0 +1,278 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Agradecemos pela sua inscrição!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Eu concordo em receber atualizações</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Inscrever-se a</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Seu e-mail</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Seu nome</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Sempre <b>primeiro</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Sempre primeiro."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Seja o primeiro a saber as últimas notícias,<br/> produtos e tendências."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Empresas"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contato"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Exibir botão de agradecimento"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Inscrição por e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Inscrição por formulário"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Lista de distribuição não encontrada!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Bloco de newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup de newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Nenhuma lista de distribuição encontrada. Deseja criar uma nova? Isso "
|
||||
"salvará todas as suas alterações. Tem certeza de que deseja continuar?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Exibir política de reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Inscrever"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Inscrever-se a"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Sucesso"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Atividade suspeita detectada pelo Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Modelo"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Obrigado"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Agradecemos pela sua inscrição!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Enviamos uma newsletter semanal por lista e sempre tentamos mantê-la "
|
||||
"interessante. Você pode cancelar sua inscrição a qualquer momento."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Não é mais possível se inscrever a essa lista: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Você não será informado sobre notícias recentes.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Seu e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Seu nome"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "seu e-mail..."
|
256
i18n/ro.po
Normal file
256
i18n/ro.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Hongu Cosmin <cosmin513@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 15.5alpha1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:56+0000\n"
|
||||
"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2023\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Întotdeauna <b> Primul</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Întotdeauna primul."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "Fii primul care află cele mai recente știri, produse și tendințe."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "Fii primul care află cele mai recente știri,<br/> produse și tendințe."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Închide"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Companii"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Eroare"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Buletin informativ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup de newsletter"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Afișați politica reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonare"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Succes"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Activitate suspectă detectată de Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Șablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Mulțumiri"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Vă mulțumim pentru abonare!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Email dvs."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Nume dvs."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "emailul dvs...."
|
282
i18n/ru.po
Normal file
282
i18n/ru.po
Normal file
@ -0,0 +1,282 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Спасибо за подписку!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Я согласен получать обновления</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Подписаться на</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ваш адрес электронной почты</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ваше имя</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Всегда <b>первый</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Всегда первый."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
"Узнавайте первыми обо всех последних новостях, продуктах и тенденциях."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Узнайте первыми обо всех последних новостях, продуктах<br/> и тенденциях."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Компании"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Контакты"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Кнопка благодарности на дисплее"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Подписка по электронной почте"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Подписка на форму"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Список(ы) рассылки не найден!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Новостная рассылка"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Блок новостей"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Рассылка новостей"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Список рассылки не найден, вы хотите создать новый? Это сохранит все ваши "
|
||||
"изменения, вы уверены, что хотите продолжить?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Показать политику reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Подписаться"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Подписаться"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Успех"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Подозрительная активность, обнаруженная Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Шаблон"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Спасибо"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Спасибо за подписку!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Мы отправляем одну еженедельную рассылку на каждый список и всегда стараемся"
|
||||
" сделать ее интересной. Вы можете отписаться от рассылки в любое время."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Вы больше не можете подписаться на следующий список : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Теперь вы будете в курсе последних новостей.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Ваш Email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Ваше имя"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "ваш e-mail..."
|
263
i18n/sk.po
Normal file
263
i18n/sk.po
Normal file
@ -0,0 +1,263 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Vždy <b>prvý</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Vždy prvý."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "Buďte prvý, kto sa dozvie o novinkách, <br/>produktoch a trendoch."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zatvoriť"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Spoločnosti"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Informačný leták"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Kontextové okno s informáciami"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Nenašiel sa žiadny rozposielací zoznam, prajete si vytvoriť nový? Všetky "
|
||||
"vaše zmeny sa uložia. Naozaj chcete pokračovať?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Ukázať pravidlá reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Odoberať"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Úspech"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha zistil podozrivú aktivitu."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Šablóna"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Ďakujem"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Ďakujeme za registráciu."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Váš email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Vaše meno"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "Váš email..."
|
266
i18n/sl.po
Normal file
266
i18n/sl.po
Normal file
@ -0,0 +1,266 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Boris Kodelja <boris@hbs.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# matjaz k <matjaz@mentis.si>, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zaključi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Podjetja"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Stik"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Napaka"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Novice"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Pojavno okno obvestila"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Prikaži politiko reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Naroči se"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Uspešno"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha je zaznal sumljivo dejavnost."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Predloga"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Hvala"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Hvala za prijavo!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Vaša e-pošta"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Vaše ime"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "vaša e-pošta..."
|
280
i18n/sr.po
Normal file
280
i18n/sr.po
Normal file
@ -0,0 +1,280 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# Jelena Stamatović, 2024
|
||||
# コフスタジオ, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Always <b>First</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Always First."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Preduzeća"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Display Thanks Button"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Email Subscription"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Form Subscription"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Mailing List(s) not found!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Novine"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Newsletter Block"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Newsletter Popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Show reCaptcha Policy"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Prijavi se"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Subscribe to"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Uspeh"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Suspicious activity detected by Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Šablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Thanks"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Thanks for subscribing!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "You cannot subscribe to the following list anymore : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "You will now be informed about the latest news.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Vaš e-mail"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Vaše ime"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "your email..."
|
252
i18n/sr@latin.po
Normal file
252
i18n/sr@latin.po
Normal file
@ -0,0 +1,252 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-16 13:50+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Novine"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Pretplati se"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
270
i18n/sv.po
Normal file
270
i18n/sv.po
Normal file
@ -0,0 +1,270 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Lasse L, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 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: Anders Wallenquist <anders.wallenquist@vertel.se>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Alltid <b>Först</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Alltid Först"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Var den första med att få de senaste nyheterna,<br/> produkter och trender."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Bolag"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Nyhetsbrev"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup-fönster för nyhetsbrev"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Ingen e-postlista hittades, vill du skapa en ny? Detta kommer att spara alla"
|
||||
" dina ändringar, är du säker på att du vill fortsätta?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Visa reCaptcha Policy"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Prenumerera"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Framgång"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Misstänkt aktivitet upptäcktes av Google reCaptcha."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Mall"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Tack"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Tack för att du prenumererar!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Din e-post"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Ditt namn"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "din e-post..."
|
279
i18n/th.po
Normal file
279
i18n/th.po
Normal file
@ -0,0 +1,279 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" ขอบคุณสำหรับการสมัคร!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">ฉันตกลงที่จะรับการอัปเดต</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">สมัครรับข้อมูล</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">อีเมลของคุณ</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">ชื่อของคุณ</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "เป็นอันดับ<b>แรก</b>เสมอ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "เป็นอันดับแรกเสมอ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "เป็นคนแรกที่ค้นพบข่าวสาร ผลิตภัณฑ์ และเทรนด์ล่าสุดทั้งหมด"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "เป็นคนแรกที่ค้นพบข่าวสารล่าสุดทั้งหมด<br/> ผลิตภัณฑ์และเทรนด์ล่าสุด"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "ปิด"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "ติดต่อ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "แสดงปุ่มขอบคุณ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "สมัครรับข้อมูลอีเมล"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "ผิดพลาด"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "สมัครรับข้อมูลแบบฟอร์ม"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "ไม่พบรายชื่อผู้รับจดหมาย!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "จดหมายข่าว"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "บล็อกจดหมายข่าว"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "จดหมายข่าวแบบป๊อปอัพ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"ไม่พบรายชื่อผู้เมล คุณต้องการสร้างใหม่หรือไม่? "
|
||||
"การดำเนินการนี้จะบันทึกการเปลี่ยนแปลงทั้งหมดของคุณ "
|
||||
"คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "แสดงนโยบาย reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "ติดตาม"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "ติดตาม"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "สำเร็จ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "กิจกรรมน่าสงสัยที่ตรวจพบโดย Google reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "เทมเพลต"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "ขอบคุณ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "ขอบคุณสำหรับการกดติดตาม!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"เราส่งจดหมายข่าวรายสัปดาห์หนึ่งฉบับต่อรายการและพยายามทำให้น่าสนใจอยู่เสมอ "
|
||||
"คุณสามารถยกเลิกการสมัครได้ตลอดเวลา"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "คุณไม่สามารถสมัครรับรายการต่อไปนี้ได้อีกต่อไป : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "ตอนนี้คุณจะได้รับแจ้งเกี่ยวกับข่าวสารล่าสุด <br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "อีเมลของคุณ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "ชื่อของคุณ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "อีเมลของคุณ..."
|
282
i18n/tr.po
Normal file
282
i18n/tr.po
Normal file
@ -0,0 +1,282 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2023
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Levent Karakaş <levent@mektup.at>, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Halil, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.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: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Güncellemeleri almayı kabul ediyorum</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Abone ol</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">E-postanız</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Adınız</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Her zaman <b>İlk</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Her zaman ilk."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "En son haberleri ilk öğrenen siz olun,<br/> ürünler ve trendler."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Şirketler"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Teşekkür Düğmesini Görüntüle"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "E-posta Aboneliği"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "Form Aboneliği"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Posta Listesi bulunamadı!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Bülten"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Bülten Açılır Penceresi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Posta listesi bulunamadı, yeni bir tane oluşturmak ister misiniz? Bu, tüm "
|
||||
"değişikliklerinizi kaydedecektir, devam etmek istediğinizden emin misiniz?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "ReCaptcha Politikasını Göster"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Abone Ol"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Abone ol"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Başarılı"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha tarafından şüpheli etkinlik algılandı."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Şablon"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Teşekkürler"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Abone olduğun için teşekkürler!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Liste başına haftalık bir bülten gönderiyoruz ve her zaman ilginç tutmaya "
|
||||
"çalışıyoruz. İstediğiniz zaman abonelikten çıkabilirsiniz."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Artık aşağıdaki listeye abone olamazsınız: %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Şimdi en son haberlerden haberdar olacaksınız.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "E-Posta Adresiniz"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Adınız"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "e-posta adresiniz..."
|
280
i18n/uk.po
Normal file
280
i18n/uk.po
Normal file
@ -0,0 +1,280 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Я погоджуюсь отримувати оновлення</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Підписатися на</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ваш Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Ваше ім'я</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Завжди <b>Перший</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Завжди перший."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
"Будьте першим, хто дізнається всі останні новини, продукти та тенденції."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Будьте першим, хто дізнайється про всі останні новини,<br/> товари та "
|
||||
"тенденції."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Компанії"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "Показати кнопку Подяки"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "Email-підписка"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Помилка"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "З підписки"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "Список масової розсилки не знайдено!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Інформаційний бюлетень"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "Блок інформаційного бюлетня"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Спливаючий інформаційний бюлетень"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Список розсилки не знайдено, ви хочете створити новий? Це збереже всі ваші "
|
||||
"зміни. Ви впевнені, що хочете продовжити?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Показати політику reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Підписатися"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "Підписатися на"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Успіх"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha виявила підозрілу активність."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Шаблон "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Дякуємо"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Дякуємо за підписку!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
"Ми надсилаємо один тижневий інформаційний бюлетень на список розсилки і "
|
||||
"завжди намагаємося підтримувати його цікавим. Ви можете скасувати підписку в"
|
||||
" будь-який час."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "Ви більше не можете підписатися на наступний список : %s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "Ви тепер будете проінформовані про останні новини.<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Ваша електронна пошта"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Ваше ім’я"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "ваш email..."
|
269
i18n/vi.po
Normal file
269
i18n/vi.po
Normal file
@ -0,0 +1,269 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 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: Thi Huong Nguyen, 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">Tên</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "Luôn luôn <b>nhận tin đầu tiên</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "Luôn nhận tin đầu tiên"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
"Hãy là người đầu tiên nhận bản tin,<br/> sản phẩm và xu hướng mới nhất. "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "Đóng"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Công ty"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "Liên hệ"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "Lỗi"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "Bản tin email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "Popup bản tin email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Không tìm thấy danh sách gửi thử, bạn có muốn tạo một danh sách không? Việc "
|
||||
"này sẽ lưu tất cả thay đổi, bạn có muốn tiếp tục không? "
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "Hiện chính sách reCaptcha"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "Đăng ký nhận tin"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "Thành công"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Hoạt động đáng ngờ được Google reCaptcha phát hiện"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "Mẫu"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "Cám ơn"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "Cảm ơn bạn đã đăng ký"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "Email"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "email của bạn..."
|
257
i18n/website_mass_mailing.pot
Normal file
257
i18n/website_mass_mailing.pot
Normal file
@ -0,0 +1,257 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr ""
|
273
i18n/zh_CN.po
Normal file
273
i18n/zh_CN.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" 感谢您的订阅!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">我同意接收更新</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">订阅</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">您的电子邮件</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">您的名称</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "永远 <b>第一</b>."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "永远第一。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "成为第一个发现所有最新消息、产品和趋势的人。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "成为第一个发现所有最新消息、<br/>产品和趋势的人。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "联系人"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "显示感谢按钮"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "电子邮件订阅"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "错误"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "表单订阅"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "找不到邮寄清单!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "新闻信"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "最新消息方块"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "新闻信弹出窗口"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr "未找到邮件列表,您要创建一个新列表吗?这将保存您的所有更改,您确定要继续吗?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "显示验证码政策"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "订阅"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "订阅"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "成功"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha 检测到可疑活动。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "模板"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "谢谢"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "感谢订阅!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr "我们每周向每个列表发送一份新闻信,并始终努力保持其趣味性。你可以在任何时候取消订阅。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "您不能再订阅以下列表:%s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "现在您将了解到最新的消息。<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "您的电子邮件"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "您的姓名"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "您的EMail..."
|
273
i18n/zh_TW.po
Normal file
273
i18n/zh_TW.po
Normal file
@ -0,0 +1,273 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * website_mass_mailing
|
||||
#
|
||||
# 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
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ", .o_newsletter_popup"
|
||||
msgstr ", .o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".o_newsletter_popup"
|
||||
msgstr ".o_newsletter_popup"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
msgstr ""
|
||||
".s_newsletter_block .s_newsletter_list, .o_newsletter_popup "
|
||||
".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid ".s_newsletter_list"
|
||||
msgstr ".s_newsletter_list"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" Thank you for subscribing!"
|
||||
msgstr ""
|
||||
"<span class=\"fa fa-check-circle\"/>\n"
|
||||
" 感謝你的訂閱!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">I agree to receive updates</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">同意接收最新消息</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *(必填)</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Subscribe to</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">訂閱</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *(必填)</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Email</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">你的電郵地址</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *(必填)</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"<span class=\"s_website_form_label_content\">Your Name</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *</span>"
|
||||
msgstr ""
|
||||
"<span class=\"s_website_form_label_content\">你的名字</span>\n"
|
||||
" <span class=\"s_website_form_mark\"> *(必填)</span>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid "Always <b>First</b>."
|
||||
msgstr "永遠<b>置頂</b>。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Always First."
|
||||
msgstr "永遠置頂."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_default_template
|
||||
msgid "Be the first to find out all the latest news, products, and trends."
|
||||
msgstr "成為第一個了解所有最新消息、產品資訊與趨勢的人。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
msgid ""
|
||||
"Be the first to find out all the latest news,<br/> products, and trends."
|
||||
msgstr "成為第一個了解所有最新消息、<br/>產品資訊與趨勢的人。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/xml/website_mass_mailing.xml:0
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_popup
|
||||
#, python-format
|
||||
msgid "Close"
|
||||
msgstr "關閉"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model:ir.model,name:website_mass_mailing.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_mail_block_footer_social_left
|
||||
msgid "Contact"
|
||||
msgstr "聯絡人"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid "Display Thanks Button"
|
||||
msgstr "顯示感謝按鈕"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Email Subscription"
|
||||
msgstr "電郵訂閱"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Error"
|
||||
msgstr "錯誤"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Form Subscription"
|
||||
msgstr "表格訂閱"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "Mailing List(s) not found!"
|
||||
msgstr "找不到郵寄清單!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter"
|
||||
msgstr "最新消息"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Block"
|
||||
msgstr "最新消息方塊"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.snippets
|
||||
msgid "Newsletter Popup"
|
||||
msgstr "最新消息彈出視窗"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.editor.js:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"No mailing list found, do you want to create a new one? This will save all "
|
||||
"your changes, are you sure you want to proceed?"
|
||||
msgstr "未找到郵件列表,您要建立一個新列表嗎?這將儲存您的所有更改,您確定要繼續嗎?"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options_common
|
||||
msgid "Show reCaptcha Policy"
|
||||
msgstr "顯示 reCaptcha 政策"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Subscribe"
|
||||
msgstr "訂閱"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Subscribe to"
|
||||
msgstr "訂閱"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/website_mass_mailing.js:0
|
||||
#, python-format
|
||||
msgid "Success"
|
||||
msgstr "成功"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Suspicious activity detected by Google reCaptcha."
|
||||
msgstr "Google reCaptcha 檢測到的可疑活動."
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.newsletter_subscribe_options
|
||||
msgid "Template"
|
||||
msgstr "範本文字"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "Thanks"
|
||||
msgstr "謝謝"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/main.py:0
|
||||
#, python-format
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr "感謝您的訂閱!"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid ""
|
||||
"We send one weekly newsletter per list and always try to keep it "
|
||||
"interesting. You can unsubscribe at any time."
|
||||
msgstr "我們每星期只會向每個郵寄清單發送一次時事通訊,並會努力令它有趣。你隨時可以取消訂閱。"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-python
|
||||
#: code:addons/website_mass_mailing/controllers/website_form.py:0
|
||||
#, python-format
|
||||
msgid "You cannot subscribe to the following list anymore : %s"
|
||||
msgstr "你不能再訂閱以下清單:%s"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_block_form_template
|
||||
msgid "You will now be informed about the latest news.<br/>"
|
||||
msgstr "現在,你將會獲悉最新消息。<br/>"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Email"
|
||||
msgstr "你的電郵地址"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#. odoo-javascript
|
||||
#: code:addons/website_mass_mailing/static/src/js/mass_mailing_form_editor.js:0
|
||||
#, python-format
|
||||
msgid "Your Name"
|
||||
msgstr "您的姓名"
|
||||
|
||||
#. module: website_mass_mailing
|
||||
#: model_terms:ir.ui.view,arch_db:website_mass_mailing.s_newsletter_subscribe_form
|
||||
msgid "your email..."
|
||||
msgstr "你的電郵地址⋯"
|
4
models/__init__.py
Normal file
4
models/__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 res_company
|
20
models/res_company.py
Normal file
20
models/res_company.py
Normal file
@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
def _get_social_media_links(self):
|
||||
social_media_links = super()._get_social_media_links()
|
||||
website_id = self.env['website'].get_current_website()
|
||||
social_media_links.update({
|
||||
'social_facebook': website_id.social_facebook or social_media_links.get('social_facebook'),
|
||||
'social_linkedin': website_id.social_linkedin or social_media_links.get('social_linkedin'),
|
||||
'social_twitter': website_id.social_twitter or social_media_links.get('social_twitter'),
|
||||
'social_instagram': website_id.social_instagram or social_media_links.get('social_instagram'),
|
||||
'social_tiktok': website_id.social_tiktok or social_media_links.get('social_tiktok'),
|
||||
})
|
||||
return social_media_links
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1022 B |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M0 42V8l25 17L0 42Z" fill="#088BF5"/><path d="M25 25 0 8h50L25 25Z" fill="#2EBCFA"/><path d="M50 8 0 42h46a4 4 0 0 0 4-4V8Z" fill="#144496"/></svg>
|
After Width: | Height: | Size: 240 B |
71
static/src/img/snippets_thumbs/s_newsletter_block.svg
Normal file
71
static/src/img/snippets_thumbs/s_newsletter_block.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="82" height="60" viewBox="0 0 82 60">
|
||||
<defs>
|
||||
<linearGradient id="linearGradient-1" x1="0%" x2="100%" y1="44.579%" y2="55.421%">
|
||||
<stop offset="0%" stop-color="#00A09D"/>
|
||||
<stop offset="100%" stop-color="#00E2FF"/>
|
||||
</linearGradient>
|
||||
<rect id="path-2" width="22" height="2" x="33" y="7"/>
|
||||
<filter id="filter-3" width="104.5%" height="200%" x="-2.3%" y="-25%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"/>
|
||||
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
|
||||
</filter>
|
||||
<path id="path-4" d="M13 8v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H14a1 1 0 0 0-1 1zm7.445 3.63L15 8h12l-5.445 3.63a1 1 0 0 1-1.11 0zM14 18V8.5l6.428 4.485a1 1 0 0 0 1.144 0L28 8.5V18H14z"/>
|
||||
<filter id="filter-5" width="106.2%" height="116.7%" x="-3.1%" y="-4.2%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"/>
|
||||
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
|
||||
</filter>
|
||||
<rect id="path-6" width="13" height="1" x="33" y="12"/>
|
||||
<filter id="filter-7" width="107.7%" height="300%" x="-3.8%" y="-50%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"/>
|
||||
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
<rect id="path-8" width="10" height="1" x="33" y="15"/>
|
||||
<filter id="filter-9" width="110%" height="300%" x="-5%" y="-50%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"/>
|
||||
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2 0"/>
|
||||
</filter>
|
||||
<path id="path-10" d="M72 23.571V22.43a.55.55 0 0 0-.17-.402.55.55 0 0 0-.401-.17h-2.286v-2.286a.55.55 0 0 0-.17-.401.55.55 0 0 0-.402-.17H67.43a.55.55 0 0 0-.402.17.55.55 0 0 0-.17.401v2.286h-2.286a.55.55 0 0 0-.401.17.55.55 0 0 0-.17.402v1.142a.55.55 0 0 0 .17.402.55.55 0 0 0 .401.17h2.286v2.286a.55.55 0 0 0 .17.401.55.55 0 0 0 .402.17h1.142a.55.55 0 0 0 .402-.17.55.55 0 0 0 .17-.401v-2.286h2.286a.55.55 0 0 0 .401-.17.55.55 0 0 0 .17-.402zM75 23c0 1.27-.313 2.441-.939 3.514a6.969 6.969 0 0 1-2.547 2.547A6.848 6.848 0 0 1 68 30a6.848 6.848 0 0 1-3.514-.939 6.969 6.969 0 0 1-2.547-2.547A6.848 6.848 0 0 1 61 23c0-1.27.313-2.441.939-3.514a6.969 6.969 0 0 1 2.547-2.547A6.848 6.848 0 0 1 68 16c1.27 0 2.441.313 3.514.939a6.969 6.969 0 0 1 2.547 2.547A6.848 6.848 0 0 1 75 23z"/>
|
||||
<filter id="filter-12" width="107.1%" height="114.3%" x="-3.6%" y="-3.6%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feComposite in="shadowOffsetOuter1" in2="SourceAlpha" operator="out" result="shadowOffsetOuter1"/>
|
||||
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" class="snippets_thumbs">
|
||||
<g class="s_newsletter_block">
|
||||
<rect width="82" height="60" class="bg"/>
|
||||
<g class="group" transform="translate(0 16)">
|
||||
<g fill="url(#linearGradient-1)" class="image_1" opacity=".4">
|
||||
<rect width="82" height="27" class="rectangle"/>
|
||||
</g>
|
||||
<g class="rectangle">
|
||||
<use fill="#000" filter="url(#filter-3)" xlink:href="#path-2"/>
|
||||
<use fill="#FFF" fill-opacity=".95" xlink:href="#path-2"/>
|
||||
</g>
|
||||
<g class="shape">
|
||||
<use fill="#000" filter="url(#filter-5)" xlink:href="#path-4"/>
|
||||
<use fill="#FFF" fill-opacity=".95" xlink:href="#path-4"/>
|
||||
</g>
|
||||
<g class="combined_shape">
|
||||
<use fill="#000" filter="url(#filter-7)" xlink:href="#path-6"/>
|
||||
<use fill="#FFF" fill-opacity=".8" xlink:href="#path-6"/>
|
||||
</g>
|
||||
<g class="combined_shape">
|
||||
<use fill="#000" filter="url(#filter-9)" xlink:href="#path-8"/>
|
||||
<use fill="#FFF" fill-opacity=".8" xlink:href="#path-8"/>
|
||||
</g>
|
||||
<mask id="mask-11" fill="#fff">
|
||||
<use xlink:href="#path-10"/>
|
||||
</mask>
|
||||
<g class="plus_circle">
|
||||
<use fill="#000" filter="url(#filter-12)" xlink:href="#path-10"/>
|
||||
<use fill="#FFF" fill-opacity=".95" xlink:href="#path-10"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
24
static/src/js/mass_mailing_form_editor.js
Normal file
24
static/src/js/mass_mailing_form_editor.js
Normal file
@ -0,0 +1,24 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import FormEditorRegistry from "@website/js/form_editor_registry";
|
||||
|
||||
FormEditorRegistry.add('create_mailing_contact', {
|
||||
formFields: [{
|
||||
name: 'name',
|
||||
required: true,
|
||||
string: _t('Your Name'),
|
||||
type: 'char',
|
||||
}, {
|
||||
name: 'email',
|
||||
required: true,
|
||||
string: _t('Your Email'),
|
||||
type: 'email',
|
||||
}, {
|
||||
name: 'list_ids',
|
||||
relation: 'mailing.list',
|
||||
required: true,
|
||||
string: _t('Subscribe to'),
|
||||
type: 'many2many',
|
||||
}],
|
||||
});
|
143
static/src/js/website_mass_mailing.editor.js
Normal file
143
static/src/js/website_mass_mailing.editor.js
Normal file
@ -0,0 +1,143 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { ConfirmationDialog } from "@web/core/confirmation_dialog/confirmation_dialog";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { renderToElement } from "@web/core/utils/render";
|
||||
import options from "@web_editor/js/editor/snippets.options";
|
||||
|
||||
options.registry.mailing_list_subscribe = options.Class.extend({
|
||||
init() {
|
||||
this._super(...arguments);
|
||||
this.orm = this.bindService("orm");
|
||||
},
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
onBuilt() {
|
||||
this._super(...arguments);
|
||||
if (this.mailingLists.length) {
|
||||
this.$target.attr("data-list-id", this.mailingLists[0][0]);
|
||||
} else {
|
||||
this.call("dialog", "add", ConfirmationDialog, {
|
||||
body: _t("No mailing list found, do you want to create a new one? This will save all your changes, are you sure you want to proceed?"),
|
||||
confirm: () => {
|
||||
this.trigger_up("request_save", {
|
||||
reload: false,
|
||||
onSuccess: () => {
|
||||
window.location.href =
|
||||
"/web#action=mass_mailing.action_view_mass_mailing_lists";
|
||||
},
|
||||
});
|
||||
},
|
||||
cancel: () => {
|
||||
this.trigger_up("remove_snippet", {
|
||||
$snippet: this.$target,
|
||||
});
|
||||
},
|
||||
});
|
||||
}
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
cleanForSave() {
|
||||
const previewClasses = ['o_disable_preview', 'o_enable_preview'];
|
||||
const toCleanElsSelector =
|
||||
".js_subscribe_btn, .js_subscribed_btn, #newsletter_form, .s_website_form_end_message";
|
||||
const toCleanEls = this.$target[0].querySelectorAll(toCleanElsSelector);
|
||||
toCleanEls.forEach(element => {
|
||||
element.classList.remove(...previewClasses);
|
||||
});
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Options
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @see this.selectClass for parameters
|
||||
*/
|
||||
toggleThanksButton(previewMode, widgetValue, params) {
|
||||
const toSubscribeEl = this.$target[0].querySelector(".js_subscribe_btn, #newsletter_form");
|
||||
const thanksMessageEl =
|
||||
this.$target[0].querySelector(".js_subscribed_btn, .s_website_form_end_message");
|
||||
|
||||
thanksMessageEl.classList.toggle("o_disable_preview", !widgetValue);
|
||||
thanksMessageEl.classList.toggle("o_enable_preview", widgetValue);
|
||||
toSubscribeEl.classList.toggle("o_enable_preview", !widgetValue);
|
||||
toSubscribeEl.classList.toggle("o_disable_preview", widgetValue);
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Private
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
_computeWidgetState(methodName, params) {
|
||||
if (methodName !== 'toggleThanksButton') {
|
||||
return this._super(...arguments);
|
||||
}
|
||||
const toSubscribeElSelector =
|
||||
".js_subscribe_btn.o_disable_preview, #newsletter_form.o_disable_preview";
|
||||
return this.$target[0].querySelector(toSubscribeElSelector) ? "true" : "";
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
async _renderCustomXML(uiFragment) {
|
||||
this.mailingLists = await this.orm.call(
|
||||
"mailing.list",
|
||||
"name_search",
|
||||
["", [["is_public", "=", true]]],
|
||||
{ context: this.options.recordInfo.context }
|
||||
);
|
||||
if (this.mailingLists.length) {
|
||||
const selectEl = uiFragment.querySelector('we-select[data-attribute-name="listId"]');
|
||||
for (const mailingList of this.mailingLists) {
|
||||
const button = document.createElement('we-button');
|
||||
button.dataset.selectDataAttribute = mailingList[0];
|
||||
button.textContent = mailingList[1];
|
||||
selectEl.appendChild(button);
|
||||
}
|
||||
}
|
||||
const checkboxEl = document.createElement('we-checkbox');
|
||||
checkboxEl.setAttribute('string', _t("Display Thanks Button"));
|
||||
checkboxEl.dataset.toggleThanksButton = 'true';
|
||||
checkboxEl.dataset.noPreview = 'true';
|
||||
uiFragment.appendChild(checkboxEl);
|
||||
},
|
||||
});
|
||||
|
||||
options.registry.recaptchaSubscribe = options.Class.extend({
|
||||
/**
|
||||
* Toggle the recaptcha legal terms
|
||||
*/
|
||||
toggleRecaptchaLegal: function (previewMode, value, params) {
|
||||
const recaptchaLegalEl = this.$target[0].querySelector('.o_recaptcha_legal_terms');
|
||||
if (recaptchaLegalEl) {
|
||||
recaptchaLegalEl.remove();
|
||||
} else {
|
||||
const template = document.createElement('template');
|
||||
template.content.append(renderToElement("google_recaptcha.recaptcha_legal_terms"));
|
||||
this.$target[0].appendChild(template.content.firstElementChild);
|
||||
}
|
||||
},
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Private
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
_computeWidgetState: function (methodName, params) {
|
||||
switch (methodName) {
|
||||
case 'toggleRecaptchaLegal':
|
||||
return !this.$target[0].querySelector('.o_recaptcha_legal_terms') || '';
|
||||
}
|
||||
return this._super(...arguments);
|
||||
},
|
||||
});
|
153
static/src/js/website_mass_mailing.js
Normal file
153
static/src/js/website_mass_mailing.js
Normal file
@ -0,0 +1,153 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import publicWidget from "@web/legacy/js/public/public_widget";
|
||||
import {ReCaptcha} from "@google_recaptcha/js/recaptcha";
|
||||
|
||||
publicWidget.registry.subscribe = publicWidget.Widget.extend({
|
||||
selector: ".js_subscribe",
|
||||
disabledInEditableMode: false,
|
||||
read_events: {
|
||||
'click .js_subscribe_btn': '_onSubscribeClick',
|
||||
},
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
init: function () {
|
||||
this._super(...arguments);
|
||||
this._recaptcha = new ReCaptcha();
|
||||
this.rpc = this.bindService("rpc");
|
||||
this.notification = this.bindService("notification");
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
willStart: function () {
|
||||
this._recaptcha.loadLibs();
|
||||
return this._super(...arguments);
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
start: function () {
|
||||
var def = this._super.apply(this, arguments);
|
||||
|
||||
if (this.editableMode) {
|
||||
// Since there is an editor option to choose whether "Thanks" button
|
||||
// should be visible or not, we should not vary its visibility here.
|
||||
return def;
|
||||
}
|
||||
const always = this._updateView.bind(this);
|
||||
const inputName = this.el.querySelector('input').name;
|
||||
return Promise.all([def, this.rpc('/website_mass_mailing/is_subscriber', {
|
||||
'list_id': this._getListId(),
|
||||
'subscription_type': inputName,
|
||||
}).then(always, always)]);
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
destroy() {
|
||||
this._updateView({is_subscriber: false});
|
||||
this._super.apply(this, arguments);
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Private
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Modifies the elements to have the view of a subscriber/non-subscriber.
|
||||
*
|
||||
* @param {Object} data
|
||||
*/
|
||||
_updateView(data) {
|
||||
const isSubscriber = data.is_subscriber;
|
||||
const subscribeBtnEl = this.el.querySelector('.js_subscribe_btn');
|
||||
const thanksBtnEl = this.el.querySelector('.js_subscribed_btn');
|
||||
const valueInputEl = this.el.querySelector('input.js_subscribe_value, input.js_subscribe_email'); // js_subscribe_email is kept by compatibility (it was the old name of js_subscribe_value)
|
||||
|
||||
subscribeBtnEl.disabled = isSubscriber;
|
||||
valueInputEl.value = data.value || '';
|
||||
valueInputEl.disabled = isSubscriber;
|
||||
// Compat: remove d-none for DBs that have the button saved with it.
|
||||
this.el.classList.remove('d-none');
|
||||
|
||||
subscribeBtnEl.classList.toggle('d-none', !!isSubscriber);
|
||||
thanksBtnEl.classList.toggle('d-none', !isSubscriber);
|
||||
},
|
||||
|
||||
_getListId: function () {
|
||||
return this.$el.closest('[data-snippet=s_newsletter_block').data('list-id') || this.$el.data('list-id');
|
||||
},
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Handlers
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_onSubscribeClick: async function () {
|
||||
var self = this;
|
||||
const inputName = this.$('input').attr('name');
|
||||
const $input = this.$(".js_subscribe_value:visible, .js_subscribe_email:visible"); // js_subscribe_email is kept by compatibility (it was the old name of js_subscribe_value)
|
||||
if (inputName === 'email' && $input.length && !$input.val().match(/.+@.+/)) {
|
||||
this.$el.addClass('o_has_error').find('.form-control').addClass('is-invalid');
|
||||
return false;
|
||||
}
|
||||
this.$el.removeClass('o_has_error').find('.form-control').removeClass('is-invalid');
|
||||
const tokenObj = await this._recaptcha.getToken('website_mass_mailing_subscribe');
|
||||
if (tokenObj.error) {
|
||||
self.notification.add(tokenObj.error, {
|
||||
type: 'danger',
|
||||
title: _t("Error"),
|
||||
sticky: true,
|
||||
});
|
||||
return false;
|
||||
}
|
||||
this.rpc('/website_mass_mailing/subscribe', {
|
||||
'list_id': this._getListId(),
|
||||
'value': $input.length ? $input.val() : false,
|
||||
'subscription_type': inputName,
|
||||
recaptcha_token_response: tokenObj.token,
|
||||
}).then(function (result) {
|
||||
let toastType = result.toast_type;
|
||||
if (toastType === 'success') {
|
||||
self.$(".js_subscribe_btn").addClass('d-none');
|
||||
self.$(".js_subscribed_btn").removeClass('d-none');
|
||||
self.$('input.js_subscribe_value, input.js_subscribe_email').prop('disabled', !!result); // js_subscribe_email is kept by compatibility (it was the old name of js_subscribe_value)
|
||||
const $popup = self.$el.closest('.o_newsletter_modal');
|
||||
if ($popup.length) {
|
||||
$popup.modal('hide');
|
||||
}
|
||||
}
|
||||
self.notification.add(result.toast_content, {
|
||||
type: toastType,
|
||||
title: toastType === 'success' ? _t('Success') : _t('Error'),
|
||||
sticky: true,
|
||||
});
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
/**
|
||||
* This widget tries to fix snippets that were malformed because of a missing
|
||||
* upgrade script. Without this, some newsletter snippets coming from users
|
||||
* upgraded from a version lower than 16.0 may not be able to update their
|
||||
* newsletter block.
|
||||
*
|
||||
* TODO an upgrade script should be made to fix databases and get rid of this.
|
||||
*/
|
||||
publicWidget.registry.fixNewsletterListClass = publicWidget.Widget.extend({
|
||||
selector: '.s_newsletter_subscribe_form:not(.s_subscription_list), .s_newsletter_block',
|
||||
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
start() {
|
||||
this.$target[0].classList.add('s_newsletter_list');
|
||||
return this._super(...arguments);
|
||||
},
|
||||
});
|
11
static/src/scss/website_mass_mailing_edit_mode.scss
Normal file
11
static/src/scss/website_mass_mailing_edit_mode.scss
Normal file
@ -0,0 +1,11 @@
|
||||
body.editor_enable {
|
||||
.s_newsletter_subscribe_form,
|
||||
.s_newsletter_block[data-newsletter-template="form"] {
|
||||
.o_enable_preview {
|
||||
display: block !important;
|
||||
}
|
||||
.o_disable_preview {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
22
static/src/scss/website_mass_mailing_popup.scss
Normal file
22
static/src/scss/website_mass_mailing_popup.scss
Normal file
@ -0,0 +1,22 @@
|
||||
.o_newsletter_modal {
|
||||
|
||||
.modal-header {
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
.modal-title {
|
||||
display: none;
|
||||
}
|
||||
.close {
|
||||
z-index: $zindex-modal;
|
||||
@include o-position-absolute(0, 0);
|
||||
width: $font-size-lg * 2;
|
||||
height: $font-size-lg * 2;
|
||||
line-height: $font-size-lg * 2;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@include o-bg-color(color-contrast(o-color('primary')), o-color('primary'), $with-extras: false);
|
||||
box-shadow: $box-shadow-sm;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
36
static/src/snippets/s_popup/000.js
Normal file
36
static/src/snippets/s_popup/000.js
Normal file
@ -0,0 +1,36 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import PopupWidget from '@website/snippets/s_popup/000';
|
||||
|
||||
PopupWidget.include({
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Private
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Prevents the (newsletter) popup to be shown if the user is subscribed.
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
_canShowPopup() {
|
||||
if (
|
||||
this.$el.is('.o_newsletter_popup') &&
|
||||
this.$el.find('input.js_subscribe_value, input.js_subscribe_email').prop('disabled') // js_subscribe_email is kept by compatibility (it was the old name of js_subscribe_value)
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
return this._super(...arguments);
|
||||
},
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
_canBtnPrimaryClosePopup(primaryBtnEl) {
|
||||
if (primaryBtnEl.classList.contains('js_subscribe_btn')) {
|
||||
return false;
|
||||
}
|
||||
return this._super(...arguments);
|
||||
},
|
||||
});
|
||||
|
||||
export default PopupWidget;
|
14
static/src/snippets/s_popup/options.js
Normal file
14
static/src/snippets/s_popup/options.js
Normal file
@ -0,0 +1,14 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import options from '@web_editor/js/editor/snippets.options';
|
||||
|
||||
options.registry.NewsletterLayout = options.registry.SelectTemplate.extend({
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
init() {
|
||||
this._super(...arguments);
|
||||
this.containerSelector = '> .container, > .container-fluid, > .o_container_small';
|
||||
this.selectTemplateWidgetName = 'newsletter_template_opt';
|
||||
},
|
||||
});
|
15
static/src/xml/website_mass_mailing.xml
Normal file
15
static/src/xml/website_mass_mailing.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates id="template" xml:space="preserve">
|
||||
<t t-name="website_mass_mailing.edition.wrapper">
|
||||
<div class="modal fade show d-block o_newsletter_modal">
|
||||
<div role="dialog" class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<header class="modal-header">
|
||||
<button type="button" class="close" aria-label="Close" tabindex="-1">×</button>
|
||||
</header>
|
||||
<div id="wrapper" class="modal-body p-0 oe_structure oe_empty"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
80
static/tests/tours/snippet_newsletter_block_with_edit.js
Normal file
80
static/tests/tours/snippet_newsletter_block_with_edit.js
Normal file
@ -0,0 +1,80 @@
|
||||
/** @odoo-module */
|
||||
|
||||
import wTourUtils from '@website/js/tours/tour_utils';
|
||||
|
||||
wTourUtils.registerWebsitePreviewTour('snippet_newsletter_block_with_edit', {
|
||||
test: true,
|
||||
url: '/',
|
||||
edition: true,
|
||||
}, () => [
|
||||
// Put a Newsletter block.
|
||||
wTourUtils.dragNDrop({
|
||||
id: 's_newsletter_block',
|
||||
name: 'Newsletter Block',
|
||||
}),
|
||||
{
|
||||
content: 'Wait for the list id to be set.',
|
||||
trigger: 'iframe .s_newsletter_block[data-list-id]:not([data-list-id="0"]) .s_newsletter_subscribe_form',
|
||||
run: () => null, // it's a check
|
||||
},
|
||||
...wTourUtils.clickOnSave(),
|
||||
// Subscribe to the newsletter.
|
||||
{
|
||||
content: 'Wait for the email to be loaded in the newsletter input',
|
||||
trigger: 'iframe .s_newsletter_block .js_subscribe_btn',
|
||||
extra_trigger: 'iframe .s_newsletter_block input:propValue(admin@yourcompany.example.com)',
|
||||
},
|
||||
// Change the link style.
|
||||
...wTourUtils.clickOnEditAndWaitEditMode(),
|
||||
{
|
||||
content: 'Click on the Subscribe button',
|
||||
trigger: 'iframe .s_newsletter_block .js_subscribe_btn',
|
||||
},
|
||||
{
|
||||
content: 'Toggle the option to display the Thanks button',
|
||||
trigger: 'we-button[data-toggle-thanks-button] we-checkbox',
|
||||
},
|
||||
{
|
||||
content: 'Click on the Thanks button',
|
||||
trigger: 'iframe .s_newsletter_block .js_subscribed_btn',
|
||||
},
|
||||
{
|
||||
content: 'Click on the link style button',
|
||||
trigger: '.dropdown:has([name="link_style_color"]) > button',
|
||||
},
|
||||
{
|
||||
content: 'Click on the primary style button',
|
||||
trigger: '[data-value="primary"]',
|
||||
},
|
||||
{
|
||||
content: 'Verify that the shape option is not available for primary while the size option appeared',
|
||||
trigger: 'we-customizeblock-option:not(:has([name="link_style_shape"]))',
|
||||
extra_trigger: 'we-customizeblock-option:has([name="link_style_size"])',
|
||||
isCheck: true,
|
||||
},
|
||||
{
|
||||
content: 'Click on the link style button',
|
||||
trigger: '.dropdown:has([name="link_style_color"]) > button',
|
||||
},
|
||||
{
|
||||
content: 'Click on the custom style button',
|
||||
trigger: '[data-value="custom"]',
|
||||
},
|
||||
{
|
||||
content: 'Change the shape of the button',
|
||||
trigger: '.dropdown:has([name="link_style_shape"]) > button',
|
||||
},
|
||||
{
|
||||
content: 'Click on the flat shape button',
|
||||
trigger: '[data-value="flat"]',
|
||||
},
|
||||
...wTourUtils.clickOnSave(),
|
||||
// Check if the button style is correct (make sure that the 'btn-success'
|
||||
// class which is not suggested as a valid style in the editor panel did not
|
||||
// prevent to edit the button).
|
||||
{
|
||||
content: 'Check that the link style is correct',
|
||||
trigger: 'iframe .s_newsletter_block .js_subscribed_btn.btn.btn-custom.flat:not(.btn-success)',
|
||||
isCheck: true,
|
||||
},
|
||||
]);
|
27
static/tests/tours/snippet_newsletter_popup_edition.js
Normal file
27
static/tests/tours/snippet_newsletter_popup_edition.js
Normal file
@ -0,0 +1,27 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import wTourUtils from "@website/js/tours/tour_utils";
|
||||
import snippetNewsletterPopupUseTour from "@website_mass_mailing/../tests/tours/snippet_newsletter_popup_use";
|
||||
|
||||
wTourUtils.registerWebsitePreviewTour("snippet_newsletter_popup_edition", {
|
||||
test: true,
|
||||
url: "/",
|
||||
edition: true,
|
||||
}, () => [
|
||||
wTourUtils.dragNDrop({
|
||||
id: 's_newsletter_subscribe_popup',
|
||||
name: 'Newsletter Popup',
|
||||
}),
|
||||
{
|
||||
content: "Check the modal is opened for edition",
|
||||
trigger: 'iframe .o_newsletter_popup .modal:visible',
|
||||
in_modal: false,
|
||||
run: () => null,
|
||||
},
|
||||
...wTourUtils.clickOnSave(),
|
||||
{
|
||||
content: "Check the modal has been saved, closed",
|
||||
trigger: 'iframe body:has(.o_newsletter_popup)',
|
||||
run: snippetNewsletterPopupUseTour.ensurePopupNotVisible,
|
||||
}
|
||||
]);
|
48
static/tests/tours/snippet_newsletter_popup_use.js
Normal file
48
static/tests/tours/snippet_newsletter_popup_use.js
Normal file
@ -0,0 +1,48 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
function ensurePopupNotVisible() {
|
||||
const $modal = this.$anchor.find('.o_newsletter_popup .modal');
|
||||
if ($modal.length !== 1) {
|
||||
// Avoid the tour to succeed if the modal can't be found while
|
||||
// it should. Indeed, if the selector ever becomes wrong and the
|
||||
// expected element is actually not found anymore, the test
|
||||
// won't be testing anything anymore as the visible check will
|
||||
// always be truthy on empty jQuery element.
|
||||
console.error("Modal couldn't be found in the DOM. The tour is not working as expected.");
|
||||
}
|
||||
if ($modal.is(':visible')) {
|
||||
console.error('Modal should not be opened.');
|
||||
}
|
||||
}
|
||||
|
||||
registry.category("web_tour.tours").add('snippet_newsletter_popup_use', {
|
||||
test: true,
|
||||
url: '/',
|
||||
steps: () => [
|
||||
{
|
||||
content: "Check the modal is not yet opened and force it opened",
|
||||
trigger: 'body:has(.o_newsletter_popup)',
|
||||
run: ensurePopupNotVisible,
|
||||
},
|
||||
{
|
||||
content: "Check the modal is now opened and enter text in the subscribe input",
|
||||
trigger: '.o_newsletter_popup .modal input',
|
||||
in_modal: false,
|
||||
run: 'text hello@world.com',
|
||||
},
|
||||
{
|
||||
content: "Subscribe",
|
||||
trigger: '.modal-dialog .btn-primary',
|
||||
},
|
||||
{
|
||||
content: "Check the modal is now closed",
|
||||
trigger: 'body:not(.modal-open)',
|
||||
run: ensurePopupNotVisible,
|
||||
}
|
||||
]});
|
||||
|
||||
export default {
|
||||
ensurePopupNotVisible: ensurePopupNotVisible,
|
||||
};
|
3
tests/__init__.py
Normal file
3
tests/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from . import test_snippets
|
33
tests/test_snippets.py
Normal file
33
tests/test_snippets.py
Normal file
@ -0,0 +1,33 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import HttpCase, tagged
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestSnippets(HttpCase):
|
||||
|
||||
def test_snippet_newsletter_popup(self):
|
||||
self.start_tour("/", "snippet_newsletter_popup_edition", login='admin')
|
||||
self.start_tour("/", "snippet_newsletter_popup_use", login=None)
|
||||
|
||||
mailing_list = self.env['mailing.list'].search([], limit=1)
|
||||
emails = mailing_list.contact_ids.mapped('email')
|
||||
self.assertIn("hello@world.com", emails)
|
||||
|
||||
def test_snippet_newsletter_block_witih_edit(self):
|
||||
self.env.ref('base.user_admin').email = 'admin@yourcompany.example.com'
|
||||
admin_email = self.env.ref('base.user_admin').email
|
||||
# Get contacts with this email
|
||||
mass_mailing_contacts = self.env['mailing.contact'].search([('email', '=', admin_email)])
|
||||
mailing_list = self.env['mailing.list'].search([('contact_ids', 'in', mass_mailing_contacts.ids)])
|
||||
# Unsubscribe the admin's email from every mailing list to ensure the
|
||||
# tour can subscribe the admin again
|
||||
mailing_list.write({
|
||||
'contact_ids': [(3, contact_id) for contact_id in mass_mailing_contacts.ids],
|
||||
})
|
||||
self.start_tour(
|
||||
self.env['website'].get_client_action_url('/'),
|
||||
"snippet_newsletter_block_with_edit",
|
||||
login='admin'
|
||||
)
|
10
views/snippets/s_popup.xml
Normal file
10
views/snippets/s_popup.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="website_mass_mailing.s_popup_000_js" model="ir.asset">
|
||||
<field name="name">Popup 000 JS Website Mass Mailing Override</field>
|
||||
<field name="bundle">web.assets_frontend</field>
|
||||
<field name="path">website_mass_mailing/static/src/snippets/s_popup/000.js</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
238
views/snippets_templates.xml
Normal file
238
views/snippets_templates.xml
Normal file
@ -0,0 +1,238 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="remove_external_snippets" inherit_id="website.external_snippets">
|
||||
<xpath expr="//t[@id='newsletter_snippet']" position="replace"/>
|
||||
<xpath expr="//t[@id='newsletter_popup_snippet']" position="replace"/>
|
||||
</template>
|
||||
|
||||
<template id="snippets" inherit_id="website.snippets">
|
||||
<xpath expr="//t[@id='mass_mailing_newsletter_block_hook']" position="replace">
|
||||
<t t-snippet="website_mass_mailing.s_newsletter_block" string="Newsletter Block" t-thumbnail="/website_mass_mailing/static/src/img/snippets_thumbs/s_newsletter_block.svg" t-forbid-sanitize="form"/>
|
||||
</xpath>
|
||||
<xpath expr="//t[@id='mass_mailing_newsletter_popup_hook']" position="replace">
|
||||
<t t-snippet="website_mass_mailing.s_newsletter_subscribe_popup" string="Newsletter Popup" t-thumbnail="/website/static/src/img/snippets_thumbs/newsletter_subscribe_popup.svg" t-forbid-sanitize="form"/>
|
||||
</xpath>
|
||||
<xpath expr="//t[@id='mass_mailing_newsletter_hook']" position="replace">
|
||||
<t t-snippet="website_mass_mailing.s_newsletter_subscribe_form" string="Newsletter" t-thumbnail="/website/static/src/img/snippets_thumbs/s_newsletter_subscribe_form.svg" t-forbid-sanitize="form"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<!--
|
||||
Users upgraded from a version lower than 16.0 may have those blocks in their
|
||||
database, without the s_newsletter_list class. See fixNewsletterListClass.
|
||||
-->
|
||||
<template id="s_newsletter_subscribe_form" name="Newsletter">
|
||||
<div class="s_newsletter_subscribe_form s_newsletter_list js_subscribe" data-vxml="001" data-list-id="0" data-name="Newsletter Form">
|
||||
<div class="input-group">
|
||||
<input type="email" name="email" class="js_subscribe_value form-control" placeholder="your email..."/>
|
||||
<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>
|
||||
</template>
|
||||
|
||||
<!--
|
||||
Users upgraded from a version lower than 16.0 may have those blocks in their
|
||||
database, without the s_newsletter_list class. See fixNewsletterListClass.
|
||||
-->
|
||||
<template id="s_newsletter_block" name="Newsletter Block">
|
||||
<section class="s_newsletter_block s_newsletter_list pt32 pb32" data-list-id="0">
|
||||
<div class="container">
|
||||
<t t-call="website_mass_mailing.s_newsletter_block_default_template"/>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<template id="s_newsletter_block_default_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>
|
||||
<t t-snippet-call="website_mass_mailing.s_newsletter_subscribe_form"/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="s_newsletter_block_form_template" groups="base.group_user">
|
||||
<section class="s_website_form" data-vcss="001" data-snippet="s_website_form" data-name="Form">
|
||||
<div class="container">
|
||||
<form id="newsletter_form" action="/website/form/" method="post" enctype="multipart/form-data" class="o_mark_required"
|
||||
data-mark="*" data-model_name="mailing.contact" data-success-mode="message" hide-change-model="true">
|
||||
<div class="s_website_form_rows row s_col_no_bgcolor">
|
||||
<div class="mb-0 py-2 col-12 s_website_form_field s_website_form_model_required" data-type="char" data-name="Field">
|
||||
<div class="row s_col_no_resize s_col_no_bgcolor">
|
||||
<label class="col-form-label col-sm-auto s_website_form_label" style="width: 250px" for="mailing_sub1">
|
||||
<span class="s_website_form_label_content">Your Name</span>
|
||||
<span class="s_website_form_mark"> *</span>
|
||||
</label>
|
||||
<div class="col-sm">
|
||||
<input id="mailing_sub1" type="text" class="form-control s_website_form_input" name="name" required="1"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-0 py-2 col-12 s_website_form_field s_website_form_model_required" data-type="email" data-name="Field">
|
||||
<div class="row s_col_no_resize s_col_no_bgcolor">
|
||||
<label class="col-form-label col-sm-auto s_website_form_label" style="width: 250px" for="mailing_sub2">
|
||||
<span class="s_website_form_label_content">Your Email</span>
|
||||
<span class="s_website_form_mark"> *</span>
|
||||
</label>
|
||||
<div class="col-sm">
|
||||
<input id="mailing_sub2" type='email' class='form-control s_website_form_input' name="email"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-0 py-2 col-12 s_website_form_field s_website_form_model_required" data-type="many2many" data-name="Field">
|
||||
<div class="row s_col_no_resize s_col_no_bgcolor">
|
||||
<label class="col-sm-auto s_website_form_label" style="width: 250px" for="mailing_list_">
|
||||
<span class="s_website_form_label_content">Subscribe to</span>
|
||||
<span class="s_website_form_mark"> *</span>
|
||||
</label>
|
||||
<div class="col-sm">
|
||||
<div class="row s_col_no_resize s_col_no_bgcolor s_website_form_multiple" data-name="list_ids" data-display="horizontal">
|
||||
<t t-foreach="request.env['mailing.list'].search([('is_public', '=', True)])" t-as="record">
|
||||
<div class="checkbox col-12 col-lg-4 col-md-6">
|
||||
<div class="form-check">
|
||||
<input type="checkbox" class="s_website_form_input form-check-input" name="list_ids"
|
||||
t-attf-id="mailing_list_#{record.id}" t-att-value="record.id" required="1"/>
|
||||
<label class="form-check-label s_website_form_check_label" t-attf-for="mailing_list_#{record.id}">
|
||||
<t t-esc="record.name"/>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-0 py-2 col-12 s_website_form_field s_website_form_custom s_website_form_required" data-type="boolean" data-name="Field">
|
||||
<div class="row s_col_no_resize s_col_no_bgcolor">
|
||||
<label class="col-sm-auto s_website_form_label" style="width: 250px;" for="mailing_sub3">
|
||||
<span class="s_website_form_label_content">I agree to receive updates</span>
|
||||
<span class="s_website_form_mark"> *</span>
|
||||
</label>
|
||||
<div class="col-sm">
|
||||
<div class="form-check">
|
||||
<input type="checkbox" value="Yes" class="s_website_form_input" name="I want to be kept updated"
|
||||
id="mailing_sub3" required="1"/>
|
||||
</div>
|
||||
<div class="s_website_form_field_description small form-text text-muted">
|
||||
We send one weekly newsletter per list and always try to keep it interesting. You can unsubscribe at any time.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-0 py-2 col-12 s_website_form_submit" data-name="Submit Button">
|
||||
<div style="width: 250px;" class="s_website_form_label"/>
|
||||
<a href="#" role="button" class="btn btn-primary s_website_form_send">Subscribe</a>
|
||||
<span id="s_website_form_result"></span>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="s_website_form_end_message d-none">
|
||||
<div class="oe_structure">
|
||||
<section class="s_text_block pt64 pb64 o_colored_level o_cc o_cc2" data-snippet="s_text_block">
|
||||
<div class="container">
|
||||
<h2 class="text-center"><span class="fa fa-check-circle"></span>
|
||||
Thank you for subscribing!
|
||||
</h2>
|
||||
<p class="text-center">
|
||||
You will now be informed about the latest news.<br/>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<template id="s_newsletter_subscribe_popup" name="Newsletter Popup">
|
||||
<div class="s_popup o_newsletter_popup o_snippet_invisible" data-name="Newsletter Popup" data-vcss="001" data-invisible="1">
|
||||
<div class="modal fade s_popup_middle o_newsletter_modal"
|
||||
style="background-color: var(--black-50) !important;"
|
||||
data-show-after="5000" data-display="afterDelay" data-consents-duration="7"
|
||||
data-bs-focus="false" data-bs-backdrop="false" tabindex="-1" role="dialog">
|
||||
<div class="modal-dialog d-flex">
|
||||
<div class="modal-content oe_structure">
|
||||
<div class="s_popup_close js_close_popup o_we_no_overlay o_not_editable" aria-label="Close">×</div>
|
||||
<section class="s_text_block oe_img_bg o_bg_img_center pt88 pb64" data-snippet="s_text_block" data-name="Text"
|
||||
style="background-image: url('/web/image/website.s_cover_default_image'); background-position: 0 100%;">
|
||||
<div class="container s_allow_columns">
|
||||
<h2 style="text-align: center;">Always <b>First</b>.</h2>
|
||||
<p style="text-align: center;">Be the first to find out all the latest news,<br/> products, and trends.</p>
|
||||
</div>
|
||||
</section>
|
||||
<section class="s_text_block" data-snippet="s_text_block" data-name="Text">
|
||||
<div class="container">
|
||||
<div class="row s_nb_column_fixed g-0">
|
||||
<div class="col-lg-8 offset-lg-2 pt32 pb32">
|
||||
<t t-snippet-call="website_mass_mailing.s_newsletter_subscribe_form"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template id="newsletter_subscribe_options" name="Newsletter Subscribe Options" inherit_id="website.snippet_options">
|
||||
<xpath expr="//*[@t-set='so_snippet_addition_selector']" position="inside">, .o_newsletter_popup</xpath>
|
||||
<xpath expr="//div[1]" position="before">
|
||||
<div data-js="NewsletterLayout" data-selector=".s_newsletter_block">
|
||||
<we-select string="Template"
|
||||
data-name="newsletter_template_opt"
|
||||
data-attribute-name="newsletterTemplate"
|
||||
data-attribute-default-value="email">
|
||||
<we-button title="Email Subscription" string="Email Subscription"
|
||||
data-select-template="website_mass_mailing.s_newsletter_block_default_template"
|
||||
data-select-data-attribute="email" data-name="email_opt"/>
|
||||
<we-button title="Form Subscription" string="Form Subscription"
|
||||
data-select-template="website_mass_mailing.s_newsletter_block_form_template"
|
||||
data-select-data-attribute="form" data-name="form_opt"/>
|
||||
</we-select>
|
||||
</div>
|
||||
<t t-call="website_mass_mailing.newsletter_subscribe_options_common">
|
||||
<t t-set="_selector">.o_newsletter_popup</t>
|
||||
<t t-set="_target">.s_newsletter_list</t>
|
||||
</t>
|
||||
<t t-call="website_mass_mailing.newsletter_subscribe_options_common">
|
||||
<t t-set="_selector">.s_newsletter_list</t>
|
||||
<t t-set="_exclude">.s_newsletter_block .s_newsletter_list, .o_newsletter_popup .s_newsletter_list</t>
|
||||
</t>
|
||||
<div data-selector=".js_subscribe" data-drop-near="p, h1, h2, h3, blockquote, .card"/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="newsletter_subscribe_options_common">
|
||||
<div data-js="mailing_list_subscribe"
|
||||
t-att-data-selector="_selector"
|
||||
t-att-data-exclude="_exclude"
|
||||
t-att-data-target="_target">
|
||||
<we-select string="Newsletter" data-attribute-name="listId" data-dependencies="!form_opt"></we-select>
|
||||
</div>
|
||||
<div data-js="recaptchaSubscribe"
|
||||
t-att-data-selector="_selector"
|
||||
t-att-data-exclude="_exclude"
|
||||
t-att-data-target="_target">
|
||||
<t t-set="recaptcha_public_key" t-value="request.env['ir.config_parameter'].sudo().get_param('recaptcha_public_key')"/>
|
||||
<we-checkbox t-if="recaptcha_public_key" string="Show reCaptcha Policy" data-toggle-recaptcha-legal="" data-no-preview="true"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Extend default mass_mailing snippets with website feature -->
|
||||
|
||||
<template id="s_mail_block_footer_social" inherit_id="mass_mailing.s_mail_block_footer_social">
|
||||
<xpath expr="//div[hasclass('o_mail_footer_links')]" position="inside">
|
||||
<t> | <a role="button" href="/contactus" class="btn btn-link">Contact</a></t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
<template id="s_mail_block_footer_social_left" inherit_id="mass_mailing.s_mail_block_footer_social_left">
|
||||
<xpath expr="//div[hasclass('o_mail_footer_links')]" position="inside">
|
||||
<t> | <a role="button" href="/contactus" class="btn btn-link">Contact</a></t>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user