diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/website_mail_channel | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/website_mail_channel')
85 files changed, 33736 insertions, 0 deletions
diff --git a/addons/website_mail_channel/__init__.py b/addons/website_mail_channel/__init__.py new file mode 100644 index 00000000..bb0aae7e --- /dev/null +++ b/addons/website_mail_channel/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import controllers +from . import models diff --git a/addons/website_mail_channel/__manifest__.py b/addons/website_mail_channel/__manifest__.py new file mode 100644 index 00000000..45690bc9 --- /dev/null +++ b/addons/website_mail_channel/__manifest__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +{ + 'name': 'Website Mail Channels', + 'category': 'Website/Website', + 'summary': 'Allow visitors to join public mail channels', + 'description': """ +Visitors can join public mail channels managed in the Discuss app in order to get regular updates or reach out with your community. + """, + 'depends': ['website_mail'], + 'data': [ + 'data/mail_template_data.xml', + 'views/assets.xml', + 'views/snippets/s_channel.xml', + 'views/snippets/snippets.xml', + 'views/website_mail_channel_templates.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/website_mail_channel/controllers/__init__.py b/addons/website_mail_channel/controllers/__init__.py new file mode 100644 index 00000000..7fc0cd7c --- /dev/null +++ b/addons/website_mail_channel/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import main diff --git a/addons/website_mail_channel/controllers/main.py b/addons/website_mail_channel/controllers/main.py new file mode 100644 index 00000000..bed34aa2 --- /dev/null +++ b/addons/website_mail_channel/controllers/main.py @@ -0,0 +1,268 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import werkzeug + +from datetime import datetime +from dateutil import relativedelta + +from odoo import http, fields, tools, _ +from odoo.http import request +from odoo.addons.http_routing.models.ir_http import slug + + +class MailGroup(http.Controller): + _thread_per_page = 20 + _replies_per_page = 10 + + def _get_archives(self, group_id): + MailMessage = request.env['mail.message'] + # use sudo to avoid side-effects due to custom ACLs + groups = MailMessage.sudo()._read_group_raw( + [('model', '=', 'mail.channel'), ('res_id', '=', group_id), ('message_type', '!=', 'notification')], + ['subject', 'date'], + groupby=["date"], orderby="date desc") + for group in groups: + (r, label) = group['date'] + start, end = r.split('/') + group['date'] = label + group['date_begin'] = self._to_date(start) + group['date_end'] = self._to_date(end) + return groups + + def _to_date(self, dt): + """ date is (of course) a datetime so start and end are datetime + strings, but we just want date strings + """ + return (datetime + .strptime(dt, tools.DEFAULT_SERVER_DATETIME_FORMAT) + .date() # may be unnecessary? + .strftime(tools.DEFAULT_SERVER_DATE_FORMAT)) + + @http.route("/groups", type='http', auth="public", website=True, sitemap=True) + def view(self, **post): + groups = request.env['mail.channel'].search([('alias_id.alias_name', '!=', False)]) + + # compute statistics + month_date = datetime.today() - relativedelta.relativedelta(months=1) + # use sudo to avoid side-effects due to custom ACLs + messages = request.env['mail.message'].sudo().read_group([ + ('model', '=', 'mail.channel'), + ('date', '>=', fields.Datetime.to_string(month_date)), + ('message_type', '!=', 'notification'), + ('res_id', 'in', groups.ids), + ], ['res_id'], ['res_id']) + message_data = dict((message['res_id'], message['res_id_count']) for message in messages) + + group_data = dict( + (group.id, {'monthly_message_nbr': message_data.get(group.id, 0), + 'members_count': len(group.channel_partner_ids)}) + for group in groups.sudo()) + return request.render('website_mail_channel.mail_channels', {'groups': groups, 'group_data': group_data}) + + @http.route(["/groups/is_member"], type='json', auth="public", website=True) + def is_member(self, channel_id=0, **kw): + """ Determine if the current user is member of the given channel_id + :param channel_id : the channel_id to check + """ + current_user = request.env.user + session_partner_id = request.session.get('partner_id') + public_user = request.website.user_id + partner = None + # find the current partner + if current_user != public_user: + partner = current_user.partner_id + elif session_partner_id: + partner = request.env['res.partner'].sudo().browse(session_partner_id) + + values = { + 'is_user': current_user != public_user, + 'email': partner.email if partner else "", + 'is_member': False, + 'alias_name': False, + } + # check if the current partner is member or not + channel = request.env['mail.channel'].browse(int(channel_id)) + if channel.exists() and partner is not None: + values['is_member'] = bool(partner in channel.sudo().channel_partner_ids) + return values + + @http.route(["/groups/subscription"], type='json', auth="public", website=True) + def subscription(self, channel_id=0, subscription="on", email='', **kw): + """ Subscribe to a mailing list : this will create a partner with its email address (if public user not + registered yet) and add it as channel member + :param channel_id : the channel id to join/quit + :param subscription : 'on' to unsubscribe the user, 'off' to subscribe + """ + unsubscribe = subscription == 'on' + channel = request.env['mail.channel'].browse(int(channel_id)) + if not channel.exists(): + return False + + partner_ids = [] + + # search partner_id + if request.env.user != request.website.user_id: + # connected users are directly (un)subscribed + partner_ids = request.env.user.partner_id.ids + + # add or remove channel members + if unsubscribe: + channel.check_access_rule('read') + channel.sudo().write({'channel_partner_ids': [(3, partner_id) for partner_id in partner_ids]}) + return "off" + else: # add partner to the channel + request.session['partner_id'] = partner_ids[0] + channel.check_access_rule('read') + channel.sudo().write({'channel_partner_ids': [(4, partner_id) for partner_id in partner_ids]}) + return "on" + + else: + # public users will recieve confirmation email + partner_ids = [p.id for p in request.env['mail.thread'].sudo()._mail_find_partner_from_emails([email], records=channel.sudo()) if p] + if not partner_ids or not partner_ids[0]: + name = email.split('@')[0] + partner_ids = [request.env['res.partner'].sudo().create({'name': name, 'email': email}).id] + + channel.sudo()._send_confirmation_email(partner_ids, unsubscribe) + return "email" + + @http.route([ + '''/groups/<model('mail.channel', "[('channel_type', '=', 'channel')]"):group>''', + '''/groups/<model('mail.channel'):group>/page/<int:page>''' + ], type='http', auth="public", website=True, sitemap=True) + def thread_headers(self, group, page=1, mode='thread', date_begin=None, date_end=None, **post): + if group.channel_type != 'channel': + raise werkzeug.exceptions.NotFound() + + Message = request.env['mail.message'] + + domain = [('model', '=', 'mail.channel'), ('res_id', '=', group.id), ('message_type', '!=', 'notification')] + if mode == 'thread': + domain += [('parent_id', '=', False)] + if date_begin and date_end: + domain += [('date', '>=', date_begin), ('date', '<=', date_end)] + + pager = request.website.pager( + url='/groups/%s' % slug(group), + total=Message.search_count(domain), + page=page, + step=self._thread_per_page, + url_args={'mode': mode, 'date_begin': date_begin or '', 'date_end': date_end or ''}, + ) + messages = Message.search(domain, limit=self._thread_per_page, offset=pager['offset']) + values = { + 'messages': messages, + 'group': group, + 'pager': pager, + 'mode': mode, + 'archives': self._get_archives(group.id), + 'date_begin': date_begin, + 'date_end': date_end, + 'replies_per_page': self._replies_per_page, + } + return request.render('website_mail_channel.group_messages', values) + + @http.route([ + '''/groups/<model('mail.channel', "[('channel_type', '=', 'channel')]"):group>/<model('mail.message', "[('model','=','mail.channel'), ('res_id','=',group.id)]"):message>''', + ], type='http', auth="public", website=True, sitemap=True) + def thread_discussion(self, group, message, mode='thread', date_begin=None, date_end=None, **post): + if group.channel_type != 'channel': + raise werkzeug.exceptions.NotFound() + + Message = request.env['mail.message'] + if mode == 'thread': + base_domain = [('model', '=', 'mail.channel'), ('res_id', '=', group.id), ('parent_id', '=', message.parent_id and message.parent_id.id or False)] + else: + base_domain = [('model', '=', 'mail.channel'), ('res_id', '=', group.id)] + next_message = Message.search(base_domain + [('date', '<', message.date)], order="date DESC", limit=1) or None + prev_message = Message.search(base_domain + [('date', '>', message.date)], order="date", limit=1) or None + values = { + 'message': message, + 'group': group, + 'mode': mode, + 'archives': self._get_archives(group.id), + 'date_begin': date_begin, + 'date_end': date_end, + 'replies_per_page': self._replies_per_page, + 'next_message': next_message, + 'prev_message': prev_message, + } + return request.render('website_mail_channel.group_message', values) + + @http.route( + '''/groups/<model('mail.channel', "[('channel_type', '=', 'channel')]"):group>/<model('mail.message', "[('model','=','mail.channel'), ('res_id','=',group.id)]"):message>/get_replies''', + type='json', auth="public", methods=['POST'], website=True) + def render_messages(self, group, message, **post): + if group.channel_type != 'channel': + return False + + last_displayed_id = post.get('last_displayed_id') + if not last_displayed_id: + return False + + replies_domain = [('id', '<', int(last_displayed_id)), ('parent_id', '=', message.id)] + messages = request.env['mail.message'].search(replies_domain, limit=self._replies_per_page) + message_count = request.env['mail.message'].search_count(replies_domain) + values = { + 'group': group, + 'thread_header': message, + 'messages': messages, + 'msg_more_count': message_count - self._replies_per_page, + 'replies_per_page': self._replies_per_page, + } + return request.env.ref('website_mail_channel.messages_short')._render(values, engine='ir.qweb') + + @http.route("/groups/<int:group_id>/get_alias_info", type='json', auth='public', website=True) + def get_alias_info(self, group_id, **post): + group = request.env['mail.channel'].search([('id', '=', group_id)]) + if not group: # doesn't exist or doesn't have the right to access it + return {} + + return { + 'alias_name': group.alias_id and group.alias_id.alias_name and group.alias_id.alias_domain and '%s@%s' % (group.alias_id.alias_name, group.alias_id.alias_domain) or False + } + + @http.route("/groups/subscribe/<model('mail.channel'):channel>/<int:partner_id>/<string:token>", type='http', auth='public', website=True) + def confirm_subscribe(self, channel, partner_id, token, **kw): + subscriber = request.env['mail.channel.partner'].search([('channel_id', '=', channel.id), ('partner_id', '=', partner_id)]) + if subscriber: + # already registered, maybe clicked twice + return request.render('website_mail_channel.invalid_token_subscription') + + subscriber_token = channel._generate_action_token(partner_id, action='subscribe') + if token != subscriber_token: + return request.render('website_mail_channel.invalid_token_subscription') + + # add partner + channel.sudo().write({'channel_partner_ids': [(4, partner_id)]}) + + return request.render("website_mail_channel.confirmation_subscription", {'subscribing': True}) + + @http.route("/groups/unsubscribe/<model('mail.channel'):channel>/<int:partner_id>/<string:token>", type='http', auth='public', website=True) + def confirm_unsubscribe(self, channel, partner_id, token, **kw): + subscriber = request.env['mail.channel.partner'].search([('channel_id', '=', channel.id), ('partner_id', '=', partner_id)]) + if not subscriber: + partner = request.env['res.partner'].browse(partner_id).sudo().exists() + # FIXME: remove try/except in master + try: + response = request.render( + 'website_mail_channel.not_subscribed', + {'partner_id': partner}) + # make sure the rendering (and thus error if template is + # missing) happens inside the try block + response.flatten() + return response + except ValueError: + return _("The address %s is already unsubscribed or was never subscribed to any mailing list") % ( + partner.email + ) + + subscriber_token = channel._generate_action_token(partner_id, action='unsubscribe') + if token != subscriber_token: + return request.render('website_mail_channel.invalid_token_subscription') + + # remove partner + channel.sudo().write({'channel_partner_ids': [(3, partner_id)]}) + + return request.render("website_mail_channel.confirmation_subscription", {'subscribing': False}) diff --git a/addons/website_mail_channel/data/mail_template_data.xml b/addons/website_mail_channel/data/mail_template_data.xml new file mode 100644 index 00000000..52859d08 --- /dev/null +++ b/addons/website_mail_channel/data/mail_template_data.xml @@ -0,0 +1,178 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <data> + <record id="mail_template_list_subscribe" model="mail.template"> + <field name="name">Channel: Mailing list subscription</field> + <field name="model_id" ref="mail.model_mail_channel"/> + <field name="subject">Confirm subscription to ${object.name}</field> + <field name="body_html" type="html"> +<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center"> +<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;"> +<tbody> + <!-- HEADER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="middle"> + <span style="font-size: 10px;">Your Channel</span><br/> + <span style="font-size: 20px; font-weight: bold;">${object.name}</span> + </td><td valign="middle" align="right"> + <img src="/logo.png?company=${user.company_id.id}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${user.company_id.name}"/> + </td></tr> + <tr><td colspan="2" style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/> + </td></tr> + </table> + </td> + </tr> + <!-- CONTENT --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="top" style="font-size: 13px;"> + <div style="margin: 0px; padding: 0px;"> + Hello,<br/><br/> + You have requested to be subscribed to the mailing list <strong>${object.name}</strong>. + <br/><br/> + To confirm, please visit the following link: <strong><a href="${ctx['token_url']}">${ctx['token_url']}</a></strong> + <br/><br/> + If this was a mistake or you did not requested this action, please ignore this message. + % if user.signature + <br/> + ${user.signature | safe} + % endif + </div> + </td></tr> + <tr><td style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/> + </td></tr> + </table> + </td> + </tr> + <!-- FOOTER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="middle" align="left"> + ${user.company_id.name} + </td></tr> + <tr><td valign="middle" align="left" style="opacity: 0.7;"> + % if user.company_id.phone + ${user.company_id.phone} | + %endif + % if user.company_id.email + <a href="'mailto:%s' % ${user.company_id.email}" style="text-decoration:none; color: #454748;">${user.company_id.email}</a> | + % endif + % if user.company_id.website + <a href="'%s' % ${user.company_id.website}" style="text-decoration:none; color: #454748;">${user.company_id.website} + </a> + % endif + </td></tr> + </table> + </td> + </tr> +</tbody> +</table> +</td></tr> +<!-- POWERED BY --> +<tr><td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;"> + <tr><td style="text-align: center; font-size: 13px;"> + Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&utm_medium=mail" style="color: #875A7B;">Odoo</a> + </td></tr> + </table> +</td></tr> +</table> + </field> + <field name="auto_delete" eval="True"/> + </record> + + <record id="mail_template_list_unsubscribe" model="mail.template"> + <field name="name">Channel: Mailing list unsubscription</field> + <field name="model_id" ref="mail.model_mail_channel"/> + <field name="subject">Confirm unsubscription to ${object.name}</field> + <field name="body_html" type="html"> +<table border="0" cellpadding="0" cellspacing="0" style="padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;"><tr><td align="center"> +<table border="0" cellpadding="0" cellspacing="0" width="590" style="padding: 16px; background-color: white; color: #454748; border-collapse:separate;"> +<tbody> + <!-- HEADER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="middle"> + <span style="font-size: 10px;">Your Channel</span><br/> + <span style="font-size: 20px; font-weight: bold;">${object.name}</span> + </td><td valign="middle" align="right"> + <img src="/logo.png?company=${user.company_id.id}" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${user.company_id.name}"/> + </td></tr> + <tr><td colspan="2" style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;"/> + </td></tr> + </table> + </td> + </tr> + <!-- CONTENT --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="top" style="font-size: 13px;"> + <div style="margin: 0px; padding: 0px;"> + Hello,<br/><br/> + You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>. + <br/><br/> + To confirm, please visit the following link: <strong><a href="${ctx['token_url']}">${ctx['token_url']}</a></strong>. + <br/><br/> + If this was a mistake or you did not requested this action, please ignore this message. + % if user.signature: + <br/> + ${user.signature | safe} + % endif + </div> + </td></tr> + <tr><td style="text-align:center;"> + <hr width="100%" style="background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;"/> + </td></tr> + </table> + </td> + </tr> + <!-- FOOTER --> + <tr> + <td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;"> + <tr><td valign="middle" align="left"> + ${user.company_id.name} + </td></tr> + <tr><td valign="middle" align="left" style="opacity: 0.7;"> + % if user.company_id.phone + ${user.company_id.phone} | + %endif + % if user.company_id.email + <a href="'mailto:%s' % ${user.company_id.email}" style="text-decoration:none; color: #454748;">${user.company_id.email}</a> | + % endif + % if user.company_id.website + <a href="'%s' % ${user.company_id.website}" style="text-decoration:none; color: #454748;">${user.company_id.website} + </a> + % endif + </td></tr> + </table> + </td> + </tr> +</tbody> +</table> +</td></tr> +<!-- POWERED BY --> +<tr><td align="center" style="min-width: 590px;"> + <table border="0" cellpadding="0" cellspacing="0" width="590" style="min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;"> + <tr><td style="text-align: center; font-size: 13px;"> + Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&utm_medium=mail" style="color: #875A7B;">Odoo</a> + </td></tr> + </table> +</td></tr> +</table> + </field> + <field name="auto_delete" eval="True"/> + </record> + </data> + +</odoo> diff --git a/addons/website_mail_channel/i18n/af.po b/addons/website_mail_channel/i18n/af.po new file mode 100644 index 00000000..5cb7817c --- /dev/null +++ b/addons/website_mail_channel/i18n/af.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-26 09:48+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/" +"af/)\n" +"Language: af\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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Argiewe" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Verwysing" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "deur" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "onbekend" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/ar.po b/addons/website_mail_channel/i18n/ar.po new file mode 100644 index 00000000..8cd963c3 --- /dev/null +++ b/addons/website_mail_channel/i18n/ar.po @@ -0,0 +1,537 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Akram Alfusayal <akram_ma@hotmail.com>, 2020 +# hoxhe Aits <hoxhe0@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Shaima Safar <shaima.safar@open-inside.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Mustafa Rawi <mustafa@cubexco.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"اللقب\" title=\"اللقب\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "وحدنا يمكننا أن نحقق القليل. أما معاً، فسنبلغ النجوم" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "الأرشيف" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "الصورة الرمزية" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "تصفح الأرشيف" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "حسب التاريخ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "حسب الموضوع" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "قناة المناقشة" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "المتابعات" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "المجموعة" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "المُعرف" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "القوائم البريدية" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "القائمة البريدية" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "الاسم" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "الرسائل الصادرة" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "نشر في" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "رقم الإشارة" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "ابق على تواصل مع مجتمعنا" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "اشتراك" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "إلغاء الاشتراك" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "الموقع الإلكتروني" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "مرفقات" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "بواسطة" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "أرشيف القائمة البريدية" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "رسائل / شهر" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "ردود أكثر" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "ردود" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "عرض" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "بريدك الإلكتروني..." diff --git a/addons/website_mail_channel/i18n/az.po b/addons/website_mail_channel/i18n/az.po new file mode 100644 index 00000000..f1e03dd7 --- /dev/null +++ b/addons/website_mail_channel/i18n/az.po @@ -0,0 +1,438 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/bg.po b/addons/website_mail_channel/i18n/bg.po new file mode 100644 index 00000000..b596959c --- /dev/null +++ b/addons/website_mail_channel/i18n/bg.po @@ -0,0 +1,542 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Kaloyan Naumov <kaloyan@lumnus.net>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020 +# Ивайло Малинов <iv.malinov@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Ивайло Малинов <iv.malinov@gmail.com>, 2021\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Сами можем да свършим толкова малко, заедно можем да направим много повече" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Архиви" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Аватар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Преглеждайте архиви" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "По дати" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "По поредици" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Дискусионен канал" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Последващи дейности" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Група" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Невалиден или изтекъл линк за потвърждение." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Мейлинг списъци" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Мейлинг списък" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Name" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Изходящи писма" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Публикувайте в" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Референция" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Поддържайте връзка с нашата общност" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Абонирайте се " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Адресът" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Адресатът %s вече се е отписал от абонамент или никога не е бил абониран за " +"мейлинг списък" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Откажете се от абонамент" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Уебсайт" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Правилно сте били " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "изпратен е имейл за потвърждение." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "прикачени файлове" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "от" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "архиви на мейлинг списъци" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "съобщения/месец" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "повече отговори" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "отговори" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "покажете" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "абониран" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "към мейлинг списъка." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "прекратил абонамент" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Вашият имейл..." diff --git a/addons/website_mail_channel/i18n/bn.po b/addons/website_mail_channel/i18n/bn.po new file mode 100644 index 00000000..0e03045c --- /dev/null +++ b/addons/website_mail_channel/i18n/bn.po @@ -0,0 +1,534 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "আলোচনা চ্যানেল" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "দল" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "আইডি " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "নাম" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "রেফারেন্স" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "ওয়েবসাইট" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/bs.po b/addons/website_mail_channel/i18n/bs.po new file mode 100644 index 00000000..28ffbcb8 --- /dev/null +++ b/addons/website_mail_channel/i18n/bs.po @@ -0,0 +1,442 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# 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: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Kanal rasprave" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odlazni mailovi" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referenca" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Odjavi pretplatu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "od" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "prikaži" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/ca.po b/addons/website_mail_channel/i18n/ca.po new file mode 100644 index 00000000..05a9af0d --- /dev/null +++ b/addons/website_mail_channel/i18n/ca.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Carles Antoli <carlesantoli@hotmail.com>, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Arnau Ros, 2020 +# Martin Trigaux, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> enviar correu electrònic" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> arxius" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> donar-se de baixa" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arxius" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de debat" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grup" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Llistes de correu" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correu sortint" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referència" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Subscriure's" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Donar-se de baixa" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Lloc web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "per" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "correu electrònic" diff --git a/addons/website_mail_channel/i18n/ckb.po b/addons/website_mail_channel/i18n/ckb.po new file mode 100644 index 00000000..89a3dcb8 --- /dev/null +++ b/addons/website_mail_channel/i18n/ckb.po @@ -0,0 +1,533 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "ئاڤاتار" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ناسنامە" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "ناو" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "بەشداربوون" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "بەشدارنەبوون" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "ماڵپەڕ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "ئیمەیڵەکەت..." diff --git a/addons/website_mail_channel/i18n/cs.po b/addons/website_mail_channel/i18n/cs.po new file mode 100644 index 00000000..1cbd0394 --- /dev/null +++ b/addons/website_mail_channel/i18n/cs.po @@ -0,0 +1,544 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> poslat mail" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archivy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> odhlásit odběr" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Sami toho můžeme udělat málo, společně můžeme udělat tolik" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Procházet archivy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Podle data" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Podle vlákna" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Potvrdit předplatné ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Potvrďte odhlášení u ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "Vytvořte ve svém backendu veřejnou diskusní skupinu" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusní kanál" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Následné kroky" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Skupina" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Neplatný odkaz nebo vypršení potvrzovacího odkazu." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Seznam e-mailových adres" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Poštovní seznam" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Název" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Potřebujete zrušit odběr? Je to tady! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odchozí e-maily" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Přidat do" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Reference" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Buďte v kontaktu s naší komunitou" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Odebírat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adresa" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Adresa %s již byla zrušena nebo nebyla nikdy přihlášena do žádného " +"poštovního seznamu" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Odhlásit odběr" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Webstránka" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Byl jste správně" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "byl odeslán potvrzovací e-mail." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "příloh" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "od" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"je již odhlášen nebo nebyl nikdy přihlášen k mailing listu, možná budete " +"chtít zkontrolovat, zda adresa byla správná." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivy seznamů adres" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"členové<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "zpráv / měsíc" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "více odpovědí" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "odpovědi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "ukázat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "Odebíráno" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "do mailing listu." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "odhlášen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "váš e-mail..." diff --git a/addons/website_mail_channel/i18n/da.po b/addons/website_mail_channel/i18n/da.po new file mode 100644 index 00000000..5db93978 --- /dev/null +++ b/addons/website_mail_channel/i18n/da.po @@ -0,0 +1,725 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Hans Henrik Gabelgaard <hhg@gabelgaard.org>, 2020 +# jonas jensen <j.jensen@tcomp.dk>, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# JonathanStein <jstein@image.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Martin Trigaux, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Dato\" title=\"Dato\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Vedhæftelser\" " +"title=\"Vedhæftelser\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Forrige besked\" " +"title=\"Forrige besked\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Næste besked\" " +"title=\"Næste besked\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Vis vedhæftelser\"" +" title=\"Vis vedhæftelser\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Vis svar\" " +"title=\"Vis svar\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Skjul " +"vedhæftelser\" title=\"Skjul vedhæftelser\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Skjul svar\" " +"title=\"Skjul svar\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> send mail" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> arkiver" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Modtagere\" " +"title=\"Modtagere\"/> " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> afmeld" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Din kanal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hej,<br/><br/>\n" +" Du har bedt om at blive afmeldt vores adresseliste. <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" For at bekræfte dette, bedes du venligst klikke på følgende link:<strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Hvis dette var en fejl, eller du ikke har ønsket at blive afmeldt vores adresseliste, skal du se bort fra denne meddelelse.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Din kanal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hej,<br/><br/>\n" +" Du har bedt om at blive afmeldt vores adresseliste. <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" For at bekræfte dette, bedes du venligst klikke på følgende link:<strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Hvis dette var en fejl, eller du ikke har ønsket at blive afmeldt vores adresseliste, skal du se bort fra denne meddelelse.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Alene kan vi gøre så lidt, sammen kan vi gøre så meget" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arkiverede" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Gennemse arkiver" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Efter dato" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Via denne tråd" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Bekræft tilmelding til ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Bekræft afmelding på ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "Opret en offentlig diskussionsgruppe i din backend" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Opfølgninger" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Gruppe" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Ugyldigt eller udløbet bekræftelseslink." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Adresselister" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Adresseliste" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Har du brug for at afmelde dig? Det er lige her!<span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Read this " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "Ny Mail Kanal" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Udgående mails" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Send til" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Reference" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Hold kontakten med vores Community" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Tilmeld" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adressen" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Adressen %s er allerede afmeldt eller har aldrig været tilmeldt nogen " +"adresseliste" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Afmeld" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Hjemmeside" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Du har været korrekt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "en bekræftelsesemail er blevet sendt." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "Vedhæftninger" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "af" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"er allerede\n" +" afmeldt eller var aldrig tilmeldt adresselisten\n" +" du bør muligvis tjekke at adressen var\n" +" korrekt." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "adresselistearkiver" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"medlemmer<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "beskeder/ pr. måned" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "flere svar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "svar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "vis" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "tilmeldt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "adresselisten" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "afmeldt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "din e-mail..." diff --git a/addons/website_mail_channel/i18n/de.po b/addons/website_mail_channel/i18n/de.po new file mode 100644 index 00000000..7544c119 --- /dev/null +++ b/addons/website_mail_channel/i18n/de.po @@ -0,0 +1,706 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# 4e7311735ad180fde514b5b19202d965, 2020 +# DE T2 <e2f48d4s5vd1s2@outlook.com>, 2020 +# Ralf Hilgenstock <rh@dialoge.info>, 2020 +# Ermin Trevisan <trevi@twanda.com>, 2020 +# Johannes Croe <jcr@odoo.com>, 2020 +# Chris Egal <sodaswed@web.de>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>Email senden" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> Archive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> Abmelden" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Ihr Kanal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Guten Tag<br/><br/>\n" +" Sie haben sich angemeldet für die Mailing-Liste <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Zur Bestätigung klicken Sie bitte auf folgenden Link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" Falls Sie diese Anmeldung nicht gemacht haben, ignorieren Sie diese Nachricht.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Unterstützt von <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Ihr Kanal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Guten Tag<br/><br/>\n" +" Sie wollen sich abmelden von <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Zur Bestätigung klicken Sie bitte auf folgenden Link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Falls Sie diese Abmeldung nicht gewünscht haben, ignorieren Sie bitte diese Nachricht.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Unterstützt von <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Alleine können wir wenig erreichen, zusammen sehr viel." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Durchsuche Archive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Nach Datum" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Nach Thread" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Bestätigen Sie das Abonnement für ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Bestätigen Sie die Abmeldung von ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Folgenachrichten" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Gruppe" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Bestätigungslink ungültig oder abgelaufen." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "E-Mail-Empfängerlisten" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "E-Mail-Versandliste" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Name" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Müssen Sie sich abmelden? Es ist genau hier! <span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Read this " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Postausgang" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Nachricht an" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referenz" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Bleiben Sie in Kontakt mit der Community" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Abonnieren" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Die Adresse" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Die Adresse %s wurde bereits abgemeldet oder war bei keiner E-Mail-" +"Versandliste angemeldet." + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Abmelden" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Website" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Sie wurden korrekt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "eine Bestätigungs-E-Mail wurde gesendet." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "Dateianhänge" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "durch" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"ist bereits\n" +" abgemeldet oder war bisher nicht bei der E-Mail-Versandliste\n" +" angemeldet. Bitte prüfen Sie, ob die E-Mail-Adresse\n" +" korrekt ist." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "Mailinglisten Archive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"Mitglieder<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "Mitteilungen / Monat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "weitere Antworten" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "Antworten" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "anzeigen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "angemeldet" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "bei der E-Mail-Versandliste." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "abgemeldet" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Ihre E-Mail..." diff --git a/addons/website_mail_channel/i18n/el.po b/addons/website_mail_channel/i18n/el.po new file mode 100644 index 00000000..a8e75c5e --- /dev/null +++ b/addons/website_mail_channel/i18n/el.po @@ -0,0 +1,539 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Μόνοι μας μπορούμε να κάνουμε τόσα λίγα, μαζί μπορούμε να κάνουμε τόσα πολλά" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Αρχείο" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Άβαταρ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Περιήγηση στα αρχειοθετημένα" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Ανά ημερομηνία" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Ανά νήμα" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" +"Κανάλι συζήτησης\n" +" " + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Παρακολούθηση" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Ομάδα" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "Κωδικός" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Λίστες Αλληλογραφίας" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Λίστα-Αλληλογραφίας" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Περιγραφή" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Εξερχόμενα μηνύματα" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Δημοσίευση στο" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Σχετικό" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Μείνετε σε επαφή με την Κοινότητά μας" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Εγγραφή" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Κατάργηση εγγραφής" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Ιστότοπος" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "συνημμένα" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "από" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "λίστα αρχειοθετημένων emails" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "μηνύματα / μήνα" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "περισσότερες απαντήσεις" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "απαντήσεις" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "εμφάνιση" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "το emails σας..." diff --git a/addons/website_mail_channel/i18n/eo.po b/addons/website_mail_channel/i18n/eo.po new file mode 100644 index 00000000..b5ca89fb --- /dev/null +++ b/addons/website_mail_channel/i18n/eo.po @@ -0,0 +1,515 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:29+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/es.po b/addons/website_mail_channel/i18n/es.po new file mode 100644 index 00000000..2ad652ef --- /dev/null +++ b/addons/website_mail_channel/i18n/es.po @@ -0,0 +1,569 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Pedro M. Baeza <pedro.baeza@gmail.com>, 2020 +# Rick Hunter <rick_hunter_ec@yahoo.com>, 2020 +# Gelo Joga Landoo <gj@landoo.es>, 2020 +# 966ff43e6966712895a590e7320ca288, 2020 +# 36700cd705c35e1852bdffcd0b296648, 2020 +# Nicolás Broggi <rnbroggi@gmail.com>, 2020 +# Jesse Garza <jga@odoo.com>, 2020 +# Osiris Román <osiris.roman@yachaytech.edu.ec>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Fecha\" title=\"Fecha\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Adjuntos\" " +"title=\"Adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Mensaje previo\" " +"title=\"Mensaje previo\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Mensaje siguiente\"" +" title=\"Mensaje siguiente\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Mostrar adjuntos\"" +" title=\"Mostrar adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Mostrar " +"respuestas\" title=\"Mostrar respuestas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Ocultar " +"adjuntos\" title=\"Ocultar adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Ocultar " +"respuestas\" title=\"Ocultar respuestas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" +"<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Seudónimo\" " +"title=\"Seudónimo\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> mandar correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Destinatarios\" " +"title=\"Destinatarios\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> desuscribir" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Solos podemos hacer poco, pero juntos podemos hacer mucho" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Examinar archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por fecha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por hilo" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Confirmar suscripción a ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Confirmar desuscripción a ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Seguimientos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupo" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "El enlace de confirmación no es válido o ha expirado." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listas de correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista de correo" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"¿Necesita desuscribirse? ¡Es justo aquí! <span class=\"fa fa-2x fa-arrow-" +"down float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Enviar a" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Permanecer en contacto con nuestra comunidad" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Suscribirse" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "La dirección" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"La dirección %s ya está dada de baja o nunca ha estado dada de alta en " +"ninguna lista de correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Anular subscripción" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Se ha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "Se ha enviado un mail de confirmación" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "adjuntos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"ya está\n" +" dada de baja o nunca ha estado dada de alta en la lista\n" +" de correo. Compruebe que la dirección es\n" +" correcta." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivos de la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"miembros<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensajes / mes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "más respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "suscrito correctamente" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "a la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "suscripción anulada" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "su correo electrónico..." diff --git a/addons/website_mail_channel/i18n/es_CL.po b/addons/website_mail_channel/i18n/es_CL.po new file mode 100644 index 00000000..5f707666 --- /dev/null +++ b/addons/website_mail_channel/i18n/es_CL.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-07-22 02:00+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CL/)\n" +"Language: es_CL\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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos Salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "desconocido" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/es_CO.po b/addons/website_mail_channel/i18n/es_CO.po new file mode 100644 index 00000000..1d5ef54d --- /dev/null +++ b/addons/website_mail_channel/i18n/es_CO.po @@ -0,0 +1,245 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Mateo Tibaquirá <nestormateo@gmail.com>, 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2015-11-10 16:04+0000\n" +"Last-Translator: Mateo Tibaquirá <nestormateo@gmail.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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "<span class=\"oe_snippet_thumbnail_title\">Grupo de Charla</span>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "Añadir un Botón de Suscripción" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Solos podemos hacer poco, pero juntos podemos hacer mucho" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Examinar archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por fecha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por hilo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "Cambiar Lista de Charla" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "Lista de Charla" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "Ruta de Charla" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Canal de charla" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Seguimientos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "Lista de Correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "Listas de Correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "Lista-de-Correo" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" +"Descripción del mensaje: o bien el asunto, o el comienzo del cuerpo del " +"mensaje" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" +"Necesita anular su suscripción? clic aquí <span class=\"fa fa-2x fa-arrow-" +"down pull-right\"/>" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos Salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "Enviar a" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "Publicado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Permanecer en contacto con nuestra Comunidad" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Suscribirme" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "Anular Suscripción" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" +"Usado para mostrar mensajes en una sala de conversación basada en párrafos " +"usando una única ruta;" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Visible en el sitio web como un comentario" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "archivos adjuntos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivos de la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" +"miembros<br/>\n" +"<i class=\"fa fa-fw fa-envelope-o\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensajes / mes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "más respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "enviar correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "desconocido(a)" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "anular suscripción" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "su correo electrónico..." diff --git a/addons/website_mail_channel/i18n/es_DO.po b/addons/website_mail_channel/i18n/es_DO.po new file mode 100644 index 00000000..77b42f49 --- /dev/null +++ b/addons/website_mail_channel/i18n/es_DO.po @@ -0,0 +1,236 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-05-18 23:10+0000\n" +"Last-Translator: Martin Trigaux\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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Canal de discución" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "Lista de Correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "Listas de Correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "Publicado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Suscribirme" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "Anular subscripción" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Visible en el sitio web como un comentario" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "desconocido" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "su correo electrónico..." diff --git a/addons/website_mail_channel/i18n/es_EC.po b/addons/website_mail_channel/i18n/es_EC.po new file mode 100644 index 00000000..2e03960a --- /dev/null +++ b/addons/website_mail_channel/i18n/es_EC.po @@ -0,0 +1,246 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Luis Triana <luistriana.28@gmail.com>, 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: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-01-31 05:47+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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "<span class=\"oe_snippet_thumbnail_title\">Grupo de Discusión</span>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "Añadir un botón de suscripción" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Solos podemos hacer poco, pero juntos podemos hacer mucho" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Examinar archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por fecha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por hilo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "Cambiar lista de discusión" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "Lista de discusión" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "Ruta de discusión" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Canal de discución" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Seguimientos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "Lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "Listas de correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "Lista de correo" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" +"Descripción del mensaje: o bien el asunto, o el comienzo del cuerpo del " +"mensaje" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" +"Darse de baja?Está justo aquí! <span class=\"fa fa-2x fa-arrow-down pull-" +"right\"/>" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "Enviar a" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "Publicado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Permanecer en contacto con nuestra comunidad" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Suscribir" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "Anular subscripción" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" +"Usado para mostrar mensajes en una sala de conversación basada en párrafos " +"usando una única ruta;" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Visible en el sitio web como un comentario" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "archivos adjuntos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivos de la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" +"miembros<br/>\n" +"<i class=\"fa fa-fw fa-envelope-o\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensajes / mes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "más respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "Enviar correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "desconocido" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "anular suscripción" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "su correo electrónico..." diff --git a/addons/website_mail_channel/i18n/es_MX.po b/addons/website_mail_channel/i18n/es_MX.po new file mode 100644 index 00000000..e9d12758 --- /dev/null +++ b/addons/website_mail_channel/i18n/es_MX.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Cécile Collart <cco@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Fecha\" title=\"Fecha\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Adjuntos\" " +"title=\"Adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Mensaje previo\" " +"title=\"Mensaje previo\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Mensaje siguiente\"" +" title=\"Mensaje siguiente\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Mostrar adjuntos\"" +" title=\"Mostrar adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Mostrar " +"respuestas\" title=\"Mostrar respuestas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Ocultar " +"adjuntos\" title=\"Ocultar adjuntos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Ocultar " +"respuestas\" title=\"Ocultar respuestas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" +"<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Seudónimo\" " +"title=\"Seudónimo\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> mandar correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Destinatarios\" " +"title=\"Destinatarios\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> desuscribir" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Solos podemos hacer poco, pero juntos podemos hacer mucho" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Examinar archivados" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por fecha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por hilo" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Confirmar suscripción a ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Confirmar desuscripción a ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de conversaciones" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Seguimientos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupo" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "El enlace de confirmación no es válido o ha expirado." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listas de correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista de correo" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nombre" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"¿Necesita desuscribirse? ¡Es justo aquí! <span class=\"fa fa-2x fa-arrow-" +"down float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Enviar a" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Permanecer en contacto con nuestra comunidad" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Suscribirse" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "La dirección" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"La dirección %s ya está dada de baja o nunca ha estado dada de alta en " +"ninguna lista de correo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Anular subscripción" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Sitio web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Se ha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "Se ha enviado un mail de confirmación" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "adjuntos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"ya está\n" +" dada de baja o nunca ha estado dada de alta en la lista\n" +" de correo. Compruebe que la dirección es\n" +" correcta." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivos de la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"miembros<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensajes / mes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "más respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "suscrito correctamente" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "a la lista de correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "suscripción anulada" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "su correo electrónico..." diff --git a/addons/website_mail_channel/i18n/es_PE.po b/addons/website_mail_channel/i18n/es_PE.po new file mode 100644 index 00000000..b22c8074 --- /dev/null +++ b/addons/website_mail_channel/i18n/es_PE.po @@ -0,0 +1,243 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# 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: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-06-13 20:49+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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "<span class=\"oe_snippet_thumbnail_title\">Grupo de Discusión</span>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "Agregar un Botón de Suscripción" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Solos podemos hacer muy poco, juntos podemos hacer mucho más" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Navegar archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por fecha" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por hilo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "Cambiar Lista de Discusión" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "Lista de Discusión" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "Camino de Discusión" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Canal de Discusión" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Seguimientos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "Lista de Correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "Listas de Correos" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "Lista de Correo" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "Descripción del Mensaje: o bien el asunto o el inicio del cuerpo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" +"¿Necesita darse de baja? ¡Es justo aquí! <span class=\"fa fa-2x fa-arrow-" +"down pull-right\"/>" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos Salientes" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "Postear a" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "Publicado" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Mantenerse en contacto con nuestra Comunidad" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Suscribirse" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "Darse de baja" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" +"Usado para mostrar mensajes en un mensajero basado en párrafos en un camino " +"único;" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Visible en Sitio Web como un comentario" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "archivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "adjuntos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archivos de lista de correos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" +"miembros<br/>\n" +"<i class=\"fa fa-fw fa-envelope-o\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensajes / mes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "más respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respuestas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "enviar correo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "desconocido" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "darse de baja" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "su email..." diff --git a/addons/website_mail_channel/i18n/et.po b/addons/website_mail_channel/i18n/et.po new file mode 100644 index 00000000..6f225829 --- /dev/null +++ b/addons/website_mail_channel/i18n/et.po @@ -0,0 +1,539 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Maidu Targama <m.targama@gmail.com>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Piia Paurson <piia@avalah.ee>, 2020 +# atriine <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: atriine <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arhiivid" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Vaata arhiive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Sõnumite kanal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Järelkontrollid" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupp" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Viide" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Tühista tellimine" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Veebileht" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "manused" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr " " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "näita" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/eu.po b/addons/website_mail_channel/i18n/eu.po new file mode 100644 index 00000000..5460b9cd --- /dev/null +++ b/addons/website_mail_channel/i18n/eu.po @@ -0,0 +1,545 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# oihane <oihanecruce@gmail.com>, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# ibinka lete <ilete@fpbidasoa.net>, 2021 +# Gorka Toledo <gorka.toledo@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Bakarrik apur bat egin dezakegu, elkarrekin gauza asko egin ditzakegu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Artxiboak" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatarra" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Arakatu artxiboak " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Dataren arabera" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Eztabaida kanala" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Taldea" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Posta zerrendak " + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Posta-zerrenda " + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Izena" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Irteerako mezuak" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Nora bidali " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Erreferentzia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Harpidetu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Helbidea " + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Webgune" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "baieztapen mezua bidali da." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "posta zerrendako artxiboak " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mezuak / hilabete" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "erantzun gehiago" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "erantzunak" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "erakutsi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "posta zerrendara. " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Zure emaila..." diff --git a/addons/website_mail_channel/i18n/fa.po b/addons/website_mail_channel/i18n/fa.po new file mode 100644 index 00000000..1b0a53c4 --- /dev/null +++ b/addons/website_mail_channel/i18n/fa.po @@ -0,0 +1,443 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2018 +# ghasem yaghoubi <y.ghasem@gmail.com>, 2018 +# Hamed Mohammadi <hamed@dehongi.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2018\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "آرشیوها" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "آواتار" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "کانال بحث" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "گروه" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "مرجع" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "عضویت" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "نمایش" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/fi.po b/addons/website_mail_channel/i18n/fi.po new file mode 100644 index 00000000..3f5b881e --- /dev/null +++ b/addons/website_mail_channel/i18n/fi.po @@ -0,0 +1,556 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Tommi Rintala <tommi.rintala@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Svante Suominen <svante.suominen@web-veistamo.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> lähetä sähköposti" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> arkistot" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> peru tilaus" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arkistot" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Päivämäärän mukaan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Viestiketjuittain" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Keskustelukanava" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Ryhmä" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Postituslistat" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nimi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Lähtevät sähköpostit" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Viite" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Tilaa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Lopeta kanavan tilaus" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Verkkosivu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "liitteet" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "kirjoittaja" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "lisää vastauksia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "näytä" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "tilaus peruttu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "sähköpostisi..." diff --git a/addons/website_mail_channel/i18n/fr.po b/addons/website_mail_channel/i18n/fr.po new file mode 100644 index 00000000..4068bf7a --- /dev/null +++ b/addons/website_mail_channel/i18n/fr.po @@ -0,0 +1,571 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Saad Thaifa <saad.thaifa@gmail.com>, 2020 +# bb76cd9ac0cb7e20167a14728edb858b, 2020 +# Olivier Lenoir <olivier.lenoir@free.fr>, 2020 +# Fabien Bourgeois <fabien@yaltik.com>, 2020 +# Florian Hatat, 2020 +# Nicolas Roussey <nro@odoo.com>, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Elise Carton <eca@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Les pièces " +"jointes\" title=\"Les pièces jointes\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Messages " +"précédents\" title=\"Messages précédents\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Message suivant\" " +"title=\"Message suivant\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Afficher les " +"pièces jointes\" title=\"Afficher les pièces jointes\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Voir les " +"réponses\" title=\"Voir les réponses\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Cacher les pièces" +" jointes\" title=\"Cacher les pièces jointes\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Cacher les " +"réponses\" title=\"Cacher les réponses\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>envoyer un email" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archives" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Destinataires\" " +"title=\"Destinataires\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> se désinscrire" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "L'union fait la force" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archives" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Explorer les archives" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Par date" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Par sujet" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Confirmer l'inscription à ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Confirmer la désinscription à ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de discussion" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Suiveurs" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Groupe" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Lien de confirmation invalide ou expiré." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listes de diffusion" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Liste de diffusion" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nom" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Besoin de vous désinscrire? Ca se passe ici! <span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Lisez ceci " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Emails à envoyer" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Poster à" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Référence" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Gardez le contact avec notre communauté" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "S'inscrire" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "L'adresse" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"L'adresse %s est déjà désabonnée ou n'a jamais été abonnée à une liste de " +"diffusion" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Se désabonner" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Site web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Vous avez été correctement" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "un email de confirmation a été envoyé" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "pièces jointes" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "par" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"est déjà\n" +" désabonnée ou n'a jamais été abonnée à la liste de diffusion.\n" +" Vérifiez que l'adresse est\n" +" correcte." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archives" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"membres<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Trafic\" title=\"Trafic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "messages / mois" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "plus de réponses" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "réponses" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "montrer" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "abonné(e)" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "à la liste de diffusion." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "désabonné" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Votre adresse email..." diff --git a/addons/website_mail_channel/i18n/gu.po b/addons/website_mail_channel/i18n/gu.po new file mode 100644 index 00000000..0ca9b4b6 --- /dev/null +++ b/addons/website_mail_channel/i18n/gu.po @@ -0,0 +1,441 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-08-24 09:05+0000\n" +"PO-Revision-Date: 2018-08-24 09:05+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "સમુદાય" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "સંદર્ભ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "ઉમેદવારી નોંધાવો" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/he.po b/addons/website_mail_channel/i18n/he.po new file mode 100644 index 00000000..0250f33d --- /dev/null +++ b/addons/website_mail_channel/i18n/he.po @@ -0,0 +1,537 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "ארכיון" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "אווטר" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "ערוץ דיון" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "הצג שם" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "קבוצה" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "תעודה מזהה" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "שינוי אחרון ב" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "רשימות דיוור" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "שם" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "דוא\"ל יוצא" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "מזהה" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "הירשם כמנוי" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "בטל את המנוי" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "אתר אינטרנט" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "על ידי" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "הצג" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "הדוא\"ל שלך..." diff --git a/addons/website_mail_channel/i18n/hi.po b/addons/website_mail_channel/i18n/hi.po new file mode 100644 index 00000000..7294cf71 --- /dev/null +++ b/addons/website_mail_channel/i18n/hi.po @@ -0,0 +1,529 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/hr.po b/addons/website_mail_channel/i18n/hr.po new file mode 100644 index 00000000..3e3147a4 --- /dev/null +++ b/addons/website_mail_channel/i18n/hr.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Jasmina Otročak <jasmina@uvid.hr>, 2020 +# Tina Milas, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Vladimir Olujić <olujic.vladimir@storm.hr>, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Sami možemo napraviti malo, zajedno možemo napraviti više" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Pregledaj arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Po datumu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Kanal rasprave" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupa" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Link za potvrdu je nevažeći ili je istekao." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Liste za slanje mailova" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista za slanje mailova" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odlazni mailovi" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Objavi na" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Vezna oznaka" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Ostanite u kontaktu sa našom zajednicom" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Pretplatite se" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Odjava" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Web stranica" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Točno ste" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "poslan je e-mail za potvrdu." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "Privitci" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "od" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "arhive liste za slanje mailova" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "poruke / mjesec" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "više odgovora" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "odgovori" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "prikaži" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "pretplaćeno" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "u listu za slanje mailova." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "odjava s pretplate" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Vaš e-mail..." diff --git a/addons/website_mail_channel/i18n/hu.po b/addons/website_mail_channel/i18n/hu.po new file mode 100644 index 00000000..fd84ebc5 --- /dev/null +++ b/addons/website_mail_channel/i18n/hu.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Boltja Asztalosok <tilia2002@gmail.com>, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Zsofia Biro <zsbiro1205@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Zsofia Biro <zsbiro1205@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Egyedül olyan keveset tudunk tenni, együtt sokkal többet" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archívumok" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatár" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Archívumok böngészése" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Dátumonként" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Szálíkként" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Kommunikációs csatorna" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Emlékeztető" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Csoport" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "Azonosító" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Levelezőlisták" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Levelezőlista" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Név" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Kimenő levelek" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Ide küldi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Hivatkozás" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Maradjon kapcsolatba a közösségünkkel" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Feliratkozás" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Leiratkozás" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Honlap" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "mellékletek" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "által" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "levelező lista archívumok" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "üzenetek / hónap" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "több válasz" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "válaszok" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mutat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "emailje..." diff --git a/addons/website_mail_channel/i18n/id.po b/addons/website_mail_channel/i18n/id.po new file mode 100644 index 00000000..5cf4f296 --- /dev/null +++ b/addons/website_mail_channel/i18n/id.po @@ -0,0 +1,542 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# oon arfiandwi <oon.arfiandwi@gmail.com>, 2020 +# Dedi Santoso <dedisantoso@yahoo.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# whenweresober <gulmugurzu@yevme.com>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Bonny Useful <bonny.useful@gmail.com>, 2020\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Kita dapat melakukannya sedikit saja, bersama-sama kita dapat melakukan " +"begitu banyak" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arsip" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Menelusuri arsip" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Menurut tanggal" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Oleh thread" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Saluran Diskusi" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Tindak lanjut" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grup" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Milis" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Milis" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nama" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Email Keluar" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Posting ke" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referensi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Tetap berhubungan dengan komunitas kami" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Langganan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Berhenti Subskripsi" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Situs Web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "Lampiran" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "oleh" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "Arsip milis" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "pesan / bulan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "lain Balasan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "balasan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "tampil" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "email anda..." diff --git a/addons/website_mail_channel/i18n/is.po b/addons/website_mail_channel/i18n/is.po new file mode 100644 index 00000000..d7775ee2 --- /dev/null +++ b/addons/website_mail_channel/i18n/is.po @@ -0,0 +1,443 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Discussion channel" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Hópur" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "Mailing Lists" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Outgoing Mails" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Tilvísun" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Unsubscribe" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/it.po b/addons/website_mail_channel/i18n/it.po new file mode 100644 index 00000000..3ff0c8e1 --- /dev/null +++ b/addons/website_mail_channel/i18n/it.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Paolo Valier, 2020 +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Data\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Allegati\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Messaggio precedente\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Messaggio successivo\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Mostra gli allegati\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Mostra le risposte\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Nasconde gli allegati\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Nasconde le risposte\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> Invia e-mail" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> Archivi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Destinatari\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> Annulla iscrizione" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Da soli possiamo fare poco, insieme possiamo fare tanto" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archivi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Sfoglia gli archivi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Per data" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Per discussione" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Conferma iscrizione a «${object.name}»" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Conferma annullamento iscrizione a «${object.name}»" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" +"Crea un gruppo di discussione pubblico nell'interfaccia amministrativa" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canale di discussione" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Ulteriori messaggi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Gruppo" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Link di conferma non valido o scaduto." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Mailing list" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Mailing list" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Vuoi annullare l'iscrizione? Fai clic qui. <span class=\"fa fa-2x fa-arrow-" +"down float-right\" role=\"img\" aria-label=\"\" title=\"Leggi qui !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "Nuovo canale di posta" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Posta in uscita" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Inviare a" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Riferimento" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Resta in contatto con la nostra comunità" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Iscriviti" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "L'indirizzo" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"L'indirizzo %s è già stato rimosso o non è mai stato usato per l'iscrizione " +"alle mailing list" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Annulla iscrizione" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Sito web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Hai effettuato correttamente" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "È stata inviata una e-mail di conferma." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "allegati" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "di" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"è già stato\n" +" rimosso o non è mai stato usato per l'iscrizione\n" +" alle mailing list, controllare che l'indirizzo sia\n" +" corretto." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "- Archivi mailing list" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"iscritti<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Livello di attività\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "messaggi / mese" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "risposte" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "risposte" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "Mostra altre" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "l'iscrizione" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "alla mailing list." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "l'annullamento dell'iscrizione" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "E-mail..." diff --git a/addons/website_mail_channel/i18n/ja.po b/addons/website_mail_channel/i18n/ja.po new file mode 100644 index 00000000..2a6e2b98 --- /dev/null +++ b/addons/website_mail_channel/i18n/ja.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# NOKA Shigekazu <shigekazu.noka@gmail.com>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# Noma Yuki, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Yoshi Tashiro <tashiro@roomsfor.hk>, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "一人でやっても大したことはありません" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "アーカイブ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "アバター" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "アーカイブの閲覧" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "日付ごと" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "スレッドごと" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "ディスカッションチャンネル" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "フォローアップ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "グループ" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "無効または期限切れの確認リンク。" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "メーリングリスト" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "メーリングリスト" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "名称" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "送信メール" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "投稿する" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "参照" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "コミュニティと連絡を取り合う" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "購読" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "購読解除" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "ウェブサイト" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "あなたは正しく" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "a confirmation email has been sent." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "添付" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "メーリングリストのアーカイブ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "メッセージ/月" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "さらなる返信" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "返信" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "表示" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "購読済" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "購読解除済" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "あなたのメールアドレス..." diff --git a/addons/website_mail_channel/i18n/ka.po b/addons/website_mail_channel/i18n/ka.po new file mode 100644 index 00000000..3465d7a5 --- /dev/null +++ b/addons/website_mail_channel/i18n/ka.po @@ -0,0 +1,535 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "ჯგუფი" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "სახელი" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "წყარო" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "ვებსაიტი" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/kab.po b/addons/website_mail_channel/i18n/kab.po new file mode 100644 index 00000000..70a9ae2d --- /dev/null +++ b/addons/website_mail_channel/i18n/kab.po @@ -0,0 +1,235 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-03-06 11:03+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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "Rrnu taqeffalt numulteɣ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Iɣbaren" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "S wazemz" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Tulsiwin" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "Tabdart n tirawt " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "Tibdarin n tirawt" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "Tabdart n tirawt" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Emailen uffiɣen" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "Aru awennit i" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Tamsisɣelt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Multeɣ" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Ad iban ɣef usmel web am uwennit" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "iɣbaṛen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "s" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "aɣbaṛ n tebdart n tirawt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "iznan / aggur" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "sken" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "arussin" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "Imayl-inek..." diff --git a/addons/website_mail_channel/i18n/km.po b/addons/website_mail_channel/i18n/km.po new file mode 100644 index 00000000..6e96dc92 --- /dev/null +++ b/addons/website_mail_channel/i18n/km.po @@ -0,0 +1,441 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# 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: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "ឯកសារចាស់ៗ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "សូមឧស្សាទាក់ទងគ្នានៅក្នុងសហគមន៍យើងខ្ញុំ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/ko.po b/addons/website_mail_channel/i18n/ko.po new file mode 100644 index 00000000..df7ffc9e --- /dev/null +++ b/addons/website_mail_channel/i18n/ko.po @@ -0,0 +1,559 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# JH CHOI <hwangtog@gmail.com>, 2020 +# Linkup <link-up@naver.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> 메일 보내기" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> 보관" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> 구독 취소" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "혼자서는 조금할 수 있지만 함께 한다면 더 많이 할 수 있습니다" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "보관" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "아바타" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "보관본 찾기" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "날짜별" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "스레드별" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "${object.name}에 대한 구독 확인" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "${object.name}에 대한 구독 취소 확인" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "메일 및 채팅 채널" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "후속 조치" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "그룹" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "확인 링크가 잘못되었거나 만료되었습니다." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "메일보내기 목록" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "메일보내기-목록" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "이름" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"구독 취소하시겠습니까? 여기 있습니다! <span class=\"fa fa-2x fa-arrow-down float-right\" " +"role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "발신 메일" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "게시 장소" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "참조" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "커뮤니티와 연락을 유지하십시오" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "구독" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "주소" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "%s 주소는 이미 탈퇴했거나 메일보내기 목록에 가입한 적이 없습니다." + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "구독 취소" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "웹사이트" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "올바르게 되었습니다" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "확인을 위한 이메일이 발송되었습니다." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "첨부파일" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "작성자" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"이미 구독을 취소했거나 \n" +" 메일보내기 목록에 구독을 신청하지 않았습니다. \n" +" 주소가 올바른지 \n" +" 확인하는 것이 좋습니다." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "보관된 메일보내기 목록" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"멤버<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "메시지 / 월" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "추가 답글" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "답글" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "보기" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "구독중" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "메일보내기 목록." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "구독 취소됨" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "귀하의 이메일..." diff --git a/addons/website_mail_channel/i18n/lb.po b/addons/website_mail_channel/i18n/lb.po new file mode 100644 index 00000000..b5bdfdd3 --- /dev/null +++ b/addons/website_mail_channel/i18n/lb.po @@ -0,0 +1,507 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:16+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:15 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:16 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/lt.po b/addons/website_mail_channel/i18n/lt.po new file mode 100644 index 00000000..9356a90f --- /dev/null +++ b/addons/website_mail_channel/i18n/lt.po @@ -0,0 +1,551 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Audrius Palenskis <audrius.palenskis@gmail.com>, 2021 +# Antanas Muliuolis <an.muliuolis@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# Jonas Zinkevicius <jozi@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>siųsti laišką" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/>archyvai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/>nebeprenumeruoti" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Vieni mes galime padaryti tiek mažai, tačiau darydami kartu galime padaryti " +"išties labai daug" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archyvai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Portretas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Naršyti archyvus" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Pagal datą" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Pagal temą" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Patvirtinti ${object.name} prenumeratą" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Patvirtinti ${object.name} prenumeratos atsisakymą" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusijų kanalas" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Priminimai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupė" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Netinkama arba negaliojanti patvirtinimo nuoroda." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Adresatų sąrašai" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Adresatų sąrašas" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Vardas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Norite atsisakyti prenumeratos? Padarykite tai čia! <span class=\"fa fa-2x " +"fa-arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Read this " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Išeinantys laiškai" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Paskelbti į" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Numeris" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Palaikykite ryšį su mūsų bendruomene" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Prenumeruoti" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adresas" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Adresas %s jau atsisakė prenumeratos arba niekada nebuvo prenumeratorių " +"sąraše" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Nebeprenumeruoti" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Svetainė" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Jūs teisingai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "patvirtinimo el. laiškas buvo išsiųstas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "prisegtukai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "pagal" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"jau atsisakė \n" +"prenumeratos arba niekada nebuvo prenumeratorių\n" +" sąraše. Patikrinkite, ar šis adresas teisingas." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "adresatų sąrašo archyvas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"nariai<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "žinutės / mėnuo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "daugiau atsakymų" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "atsakymai" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "rodyti" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "užprenumeruota" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "į adresatų sąrašą." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "prenumerata atšaukta" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "jūsų el. paštas..." diff --git a/addons/website_mail_channel/i18n/lv.po b/addons/website_mail_channel/i18n/lv.po new file mode 100644 index 00000000..e05b0fb3 --- /dev/null +++ b/addons/website_mail_channel/i18n/lv.po @@ -0,0 +1,533 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nosaukums" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/mk.po b/addons/website_mail_channel/i18n/mk.po new file mode 100644 index 00000000..6fa321be --- /dev/null +++ b/addons/website_mail_channel/i18n/mk.po @@ -0,0 +1,240 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Aleksandar Vangelovski <aleksandarv@hbee.eu>, 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:08+0000\n" +"PO-Revision-Date: 2016-05-12 12:36+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" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Add a Subscribe Button" +msgstr "Додади копче за претплата" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Сами можеме да направиме малку, но заедно можеме да направиме многу повеќе" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Архиви" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Прегледај архива" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Според датум" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Според тема" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:19 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_path +msgid "Discussion Path" +msgstr "Патека за дискусија" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "Канал за дискусија" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Проследувања" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "е-маил листа" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "е-маил листи" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:23 +#, python-format +msgid "Mailing-List" +msgstr "е-маил листа" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_description +msgid "Message description: either the subject, or the beginning of the body" +msgstr "Опис на порака: или насловот, или почетокот на телото" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Излезни e-mail пораки" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:24 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_website_published +msgid "Published" +msgstr "Објавен" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Референца" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Останете во контакт со нашата заедница" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Претплати се" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:25 +#, python-format +msgid "Unsubscribe" +msgstr "Отпиши се" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_path +msgid "" +"Used to display messages in a paragraph-based chatter using a unique path;" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,help:website_mail_channel.field_mail_mail_website_published +msgid "Visible on the website as a comment" +msgstr "Видливо на вебсајтот како коментар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "архива" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "прикачени датотеки" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "од" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "архива на е-маил листа" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" +"членови<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "пораки / месец" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "повеќе одговори" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "одговори" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "испрати пошта" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "прикажи" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail_description +msgid "unknown" +msgstr "непознато" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "откажи ја претплатата" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "ваш е-маил..." diff --git a/addons/website_mail_channel/i18n/mn.po b/addons/website_mail_channel/i18n/mn.po new file mode 100644 index 00000000..925488de --- /dev/null +++ b/addons/website_mail_channel/i18n/mn.po @@ -0,0 +1,561 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Otgonbayar.A <gobi.mn@gmail.com>, 2020 +# Khishigbat Ganbold <khishigbat@asterisk-tech.mn>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> шуудан илгээх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> архивууд" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> захиалахаа болих" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Ганцаараа бол багахан зүйлийг, олуулаа бол их зүйлийг хийж чадна" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Архив" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Зураг" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Архивыг үзэх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Огноогоор" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Салбараар" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "${object.name}-д бүртгүүлэхийг баталгаажуулах" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "${object.name}-ын бүртгэлээс хасахыг баталгаажуулах" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Хөөрөлдөөний суваг" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Дагалтууд" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Бүлэг" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Буруу эсвэл хугацаа нь дууссан баталгаажуулалтын холбоос." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Мэйлийн жагсаалт" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Мэйлийн жагсаалт" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Нэр" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Бүртгэлээс хасагдахыг хүсч байна уу? Энд байна!<span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Read this " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Илгээсэн мэйлүүд" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Нийтлэх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Холбогдол" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Манай бүлэгтэй холбоотой байх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Бүртгүүлэх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Хаяг" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"%s хаяг аль хэдий нь бүртгэлээс хасагдсан эсвэл хэзээ ч энэ имэйл " +"жагсаалтанд бүртгэгдэж байгаагүй" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Бүртгэл цуцлах" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Вэбсайт" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Та зөв" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "баталгаажуулалтын имэйл илгээгдсэн." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "хавсралтууд" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "аар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"та аль хэдий нь \n" +" бүртгэлээс хасагдсан эсвэл энэхүү имэйл жагсаалтанд өмнө нь бүртгүүлж байгаагүй байна, та имэйл хаягаа шалгана уу." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "архивласан имэйл жагсаалт" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"гишүүд<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "зурвасууд / сар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "илүү хариунууд" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "хариунууд" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "үзүүлэх" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "бүртгүүлсэн" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "мэйлийн жагсаалтад." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "бүртгэл хасуулсан" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "таны имэйл..." diff --git a/addons/website_mail_channel/i18n/nb.po b/addons/website_mail_channel/i18n/nb.po new file mode 100644 index 00000000..f65d014f --- /dev/null +++ b/addons/website_mail_channel/i18n/nb.po @@ -0,0 +1,540 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Jorunn D. Newth, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Vi får gjort så mye mer sammen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arkiv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Bla i arkivet" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Etter dato" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Etter tråd" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusjonskanal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Oppfølginger" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Gruppe" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Ugyldig eller utløpt bekreftelseslink." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Epostlister" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Epostliste" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Navn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Utgående epostmeldinger" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Legg ut i" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referanse" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Hold kontakten med nettsamfunnet ditt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Abonner" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adressen" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Adressen %s er allerede avmeldt eller har aldri vært påmeldt noen epostliste" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Avmeld" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Nettsted" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Du er nå" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "bekreftelse på epost er sendt." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "vedlegg" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "etter" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"er allerede\n" +"avmeldt eller var aldri påmeldt epostlisten.\n" +"Sjekk gjerne at den oppgitte adressen var\n" +"korrekt." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "epostlistearkiv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "meldinger / måned" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "flere svar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "svar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "vis" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "påmeldt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "epostlisten" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "avmeldt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "din epost..." diff --git a/addons/website_mail_channel/i18n/nl.po b/addons/website_mail_channel/i18n/nl.po new file mode 100644 index 00000000..bac14ba7 --- /dev/null +++ b/addons/website_mail_channel/i18n/nl.po @@ -0,0 +1,716 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Julia van Orsouw <julia@odooexperts.nl>, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Erwin van der Ploeg (Odoo Experts) <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Datum\" title=\"Datum\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Bijlagen\" " +"title=\"Bijlagen\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Vorig bericht\" " +"title=\"Vorig bericht\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Volgende bericht\" " +"title=\"Volgende bericht\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Bijlagen " +"weergeven\" title=\"Bijlagen weergeven\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Reactie " +"weergeven\" title=\"Reactie weergeven\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Bijlagen " +"verbergen\" title=\"Bijlagen verbergen\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Reacties " +"verbergen\" title=\"Reacties verbergen\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>Verzend e-mail" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archieven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Ontvangers\" " +"title=\"Ontvangers\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> uitschrijven" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Uw kanaal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" Yu heeft verzocht om in te schrijven op de mailinglijst <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Bezoek de volgende link om te bevestigen: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" Als dit een vergissing was of je hebt deze actie niet aangevraagd, negeer dan dit bericht.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Uw kanaal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" U heeft verzocht om u af te melden voor de mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Bezoek de volgende link om te bevestigen: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Als dit een vergissing was of je hebt deze actie niet aangevraagd, negeer dan dit bericht.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Alleen bereiken we zo weinig, samen bereiken we zo veel" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archieven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Door archief bladeren" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Op datum" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Op discussie" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Bevestig abonnement op ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Bevestig uitschrijving op ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "Maak een openbare discussiegroep aan in Odoo" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Discussiekanaal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Opvolgingen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Groep" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Ongeldige of verlopen bevesttigingslink." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Mailinglijsten" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Mailinglijst" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Naam" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Wilt u zich uitschrijven? Dat kan hier! <span class=\"fa fa-2x fa-arrow-down" +" float-right\" role=\"img\" aria-label=\"\" title=\"Lees dit!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "Nieuw mail kanaal" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Uitgaande e-mails" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Versturen naar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referentie" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Blijf op de hoogte van onze community" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Inschrijven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Het adres" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Het adres %s is is al uitgeschreven of was nooit ingeschreven voor een " +"mailinglijst" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Uitschrijven" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Website" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "U bent correct" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "een bevestigingsmail is verzonden." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "bijlagen" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "in" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"Is reeds uitgeschreven of was nooit ingeschreven voor de mailinglijst. " +"Controleer of het adres juist is." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "mailinglijst archieven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"leden<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Verkeer\" title=\"Verkeer\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "berichten / maand" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "meer reacties" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "reacties" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "toon" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "ingeschreven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "aan de mailinglijst." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "uitgeschreven" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "uw e-mail..." diff --git a/addons/website_mail_channel/i18n/pl.po b/addons/website_mail_channel/i18n/pl.po new file mode 100644 index 00000000..ce886c5d --- /dev/null +++ b/addons/website_mail_channel/i18n/pl.po @@ -0,0 +1,555 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020 +# Grażyna Grzelak <grazyna.grzelak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Karol Rybak <karolrybak85@gmail.com>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Data\" title=\"Data\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Załączniki\" " +"title=\"Załączniki\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Poprzednia " +"wiadomość\" title=\"Poprzednia wiadomość\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Sami możemy zrobić tak niewiele, razem możemy zrobić tak wiele" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archiwa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Awatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Przeglądaj Archiwa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Wg daty" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Wg wątku" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Kanał dyskusyjny" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Follow-Ups" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupa" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Nieprawidłowy lub wygasły link potwierdzający." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listy mailingowe" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista mailingowa" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nazwa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "Nowy kanał mailowy" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Wychodzące" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Zaksięguj do" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Odnośnik" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "zostań z nami w kontakcie" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Subskrybuj" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adres" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Adres %s jest już anulowany lub nigdy nie został zapisany na żadną listę " +"adresową" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Wypisz się" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Strona WWW" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Byłeś poprawnie" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "e-mail z potwierdzeniem został wysłany." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "załączniki" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "przez" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"nie jest już\n" +" subskrybowany lub nigdy nie został zapisany na listę\n" +" mailingową, możesz sprawdzić, czy adres jest\n" +" poprawny." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "archiwum listy mailingowej" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"członków<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Ruch\" title=\"Ruch\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "wiadomości / miesiąc" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "więcej odpowiedzi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "odpowiedzi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "pokaż" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "subskrybowane" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "do listy mailingowej." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "niesubskrybowane" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "twój email..." diff --git a/addons/website_mail_channel/i18n/pt.po b/addons/website_mail_channel/i18n/pt.po new file mode 100644 index 00000000..8a155c8a --- /dev/null +++ b/addons/website_mail_channel/i18n/pt.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Marcelo Pereira <marcelo.pereira@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Manuela Silva <manuelarodsilva@gmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Sozinhos, nós podemos fazer muito pouco, juntos nós podemos fazer muito" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arquivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Explorar arquivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por data" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por tópico" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de Discussão" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Dar Seguimento" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupo" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Hiperligação de confirmação inválida ou expirada." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listas de Endereços" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista de Endereços" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Mensagens a Enviar" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Publicar em" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referência" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Mantenha-se em contacto com a nossa Comunidade" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Subscrever" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "O endereço" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Cancelar Subscrição" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Website" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "foi foi enviada uma mensagem de confirmação." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "anexos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "arquivos da lista de endereços" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensagens / mês" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "mais respostas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respostas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "subscreveu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "a lista de endereços." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "cancelou subscrição" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "o seu e-mail" diff --git a/addons/website_mail_channel/i18n/pt_BR.po b/addons/website_mail_channel/i18n/pt_BR.po new file mode 100644 index 00000000..3462256f --- /dev/null +++ b/addons/website_mail_channel/i18n/pt_BR.po @@ -0,0 +1,725 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# danimaribeiro <danimaribeiro@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Clemilton Clementino <clemylton@hotmail.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Lauro de Lima <lauro@ciclix.com>, 2020 +# Keli Brugalli <kbr@odoo.com>, 2020 +# falexandresilva <falexandresilva@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "<i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Data\" title=\"Data\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "<i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Anexos\" title=\"Anexos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Mensagem anterior\" " +"title=\"Mensagem anterior\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Próxima mensagem\" " +"title=\"Próxima mensagem\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Exibir anexos\" " +"title=\"Exibir anexos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Exibir respostas\"" +" title=\"Exibir respostas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Esconder anexos\"" +" title=\"Esconder anexos\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Esconder " +"respostas\" title=\"Esconder respostas\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> enviar e-mail" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> arquivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Destinatários\" " +"title=\"Destinatários\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> Cancelar inscrição" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Seu Canal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Olá,<br/><br/>\n" +" Você solicitou a inscrição na lista de discussão <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Para confirmar, visite o seguinte link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" Se isso foi um erro ou você não solicitou esta ação, ignore esta mensagem.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Distribuído por <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Seu Canal</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" Você solicitou o cancelamento da inscrição na lista de e-mails <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Para confirmar, visite o seguinte link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Se isso foi um erro ou você não solicitou esta ação, ignore esta mensagem.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Distribuído por <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Sózinhoa fizemos muito pouco, juntos podemos fazer bastante" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arquivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Navegar pelos Arquivos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Por data" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Por tópico" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Confirmar inscrição para ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Confirmar cancelamento da inscrição para ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "Crie um grupo de discussão público em seu back-end" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal de Discussão" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Acompanhamento" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Agrupar" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Link de confirmação inválido ou expirado." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Listas de Correio" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Lista de Correio" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nome" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Precisa cancelar a assinatura? Está bem aqui! <span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Leia isto " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "Novo Canal de E-mail" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "E-mails Enviados" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Posta para" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referência" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Mantenha contato com nossa comunidade" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Inscrever" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "O endereço" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"O endereço %s já cancelou a inscrição ou nunca foi inscrito em nenhuma lista" +" de discussão" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Cancelar a inscrição" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Website" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Você foi corretamente" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "Um e-mail de confirmação foi enviado." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "anexos" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "por" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"está pronto\n" +" cancelou a inscrição ou nunca foi inscrito na lista\n" +" correspondente, você pode querer verificar se o endereço era\n" +" correto." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "arquivos das listas de correio" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"membros<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Tráfego\" title=\"Tráfego\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mensagens / mês" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "mais respostas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "respostas" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "mostrar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "inscrito" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "para a lista de e-mail." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "desinscrito" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "seu e-mail..." diff --git a/addons/website_mail_channel/i18n/ro.po b/addons/website_mail_channel/i18n/ro.po new file mode 100644 index 00000000..ec4e2f63 --- /dev/null +++ b/addons/website_mail_channel/i18n/ro.po @@ -0,0 +1,714 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>trmite email" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/>dezabonare" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- ANTET -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Canalul Tăul</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONŢINUT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Salut,<br/><br/>\n" +" Ați solicitat să vă abonați la lista de corespondență <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Pentru confirmare, accesați următorul link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" Dacă aceasta a fost o greșeală sau nu ați solicitat această acțiune, ignorați acest mesaj.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- SUBSOL -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- ANTET -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Canalul tău</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONŢINUT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Salut,<br/><br/>\n" +" Ați solicitat să vă dezabonați pe lista de corespondență <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" Pentru confirmare, accesați următorul link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" Dacă aceasta a fost o greșeală sau nu ați solicitat această acțiune, ignorați acest mesaj.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- SUBSOL -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Singuri putem face atât de puțin, împreună putem face atât de multe" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Navigare arhive" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "După dată" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "După fir" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Confirmare abonare la ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Confirmare dezabonare la ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "Creați un grup de discuții publice în backend" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Canal Discuții" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Urmăriri" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grup" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Link de confirmare nevalid sau expirat." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Liste de e-mail" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Listă-discuții" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Nume" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Doriți să vă dezabonați? Este chiar aici! <span class=\"fa fa-2x fa-arrow-" +"down float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Email-uri Expediate" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Posteaza la" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referință" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Păstrează contactul cu compania ta" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Abonare" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adresa" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Dezabonare" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Pagină web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Ai fost corect" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "a fost trimis un e-mail de confirmare." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "atașamente" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "de" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"este deja\n" +" corespondență, poate doriți să verificați dacă adresa a fost\n" +" correctă." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "Arhive listă discuții" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"membri<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mesaje / lună" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "mai multe răspunsuri" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "răspunsuri" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "afișează" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "subscris" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "la lista de discuții" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "dezabonat" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "emailul dvs...." diff --git a/addons/website_mail_channel/i18n/ru.po b/addons/website_mail_channel/i18n/ru.po new file mode 100644 index 00000000..1b3902bb --- /dev/null +++ b/addons/website_mail_channel/i18n/ru.po @@ -0,0 +1,560 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Максим Дронь <dronmax@gmail.com>, 2020 +# Collex100, 2020 +# Ivan Yelizariev <yelizariev@itpp.dev>, 2020 +# Vasiliy Korobatov <korobatov@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/>Работа с базами данных</i>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/>архив</i>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/>удалить подписку</i>" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "В одиночку мы можем сделать очень мало; вместе - очень много" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Архивы" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Аватар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Просмотреть архивы" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "По дате" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "По цепочке" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Подтвердить подписку на ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Подтвердить отмены подписки на ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Канал обсуждения" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Напоминания" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Группа" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "Идентификатор" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Неверный или истекший срок ссылки для подтверждения." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Списки рассылки" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Список рассылки" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Название" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "Необходимо отписаться? Это здесь!" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Исходящие письма" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Показывать на" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Ссылка" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Оставайтесь на связи с нашим сообществом" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Подписаться" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Адрес" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Адрес %s уже отписан или никогда не был подписан ни на один список рассылки" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Отписаться" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Вы были правильно" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "подтверждение по электронной почте было отправлено." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "приложения" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "по" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"уже\n" +" отписаться или никогда не был подписан на рассылку,\n" +" вы можете проверить, что адрес указан\n" +" правильно." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "архивы списка рассылки" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "члены <br/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "сообщения / месяц" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "больше ответов" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "ответы" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "показать" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "подписан" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "в список рассылки." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "отписан" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "ваш электронный адрес..." diff --git a/addons/website_mail_channel/i18n/si.po b/addons/website_mail_channel/i18n/si.po new file mode 100644 index 00000000..38d7fa59 --- /dev/null +++ b/addons/website_mail_channel/i18n/si.po @@ -0,0 +1,529 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/sk.po b/addons/website_mail_channel/i18n/sk.po new file mode 100644 index 00000000..8e0bc780 --- /dev/null +++ b/addons/website_mail_channel/i18n/sk.po @@ -0,0 +1,538 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Matus Krnac <matus.krnac@gmail.com>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> archívy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Osamotený dokážeme tak málo, no spoločne zvládneme omnoho viac" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Archívy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Prezerať archívy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Podľa dátumu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Podľa vlákna" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskusný kanál" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Naviazania" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Skupina" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Mailové zoznamy." + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Mailové zoznamy" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Meno" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odchádzajúca pošta" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Poslať " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referencia" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Ostaňte v kontakte s komunitou" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Odoberať" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Odhlásiť sa z odberu" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Webstránka" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "prílohy" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "pomocou" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "Archív poštových adresárov" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "správy / mesiac" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "viac odpovedí" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "odpovede" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "zobraz" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "Váš email..." diff --git a/addons/website_mail_channel/i18n/sl.po b/addons/website_mail_channel/i18n/sl.po new file mode 100644 index 00000000..a6dc2806 --- /dev/null +++ b/addons/website_mail_channel/i18n/sl.po @@ -0,0 +1,554 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> pošlji e-pošto" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Sami lahko naredimo malo, skupaj pa zelo veliko" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arhivi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Brskanje po arhivih" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Po datumu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Po nizu" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Potrdite naročnino na ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Opomini" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Skupina" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Seznami prejemnikov" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Seznam prejemnikov" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Naziv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odhajajoča sporočila" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Pošlji na" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referenca" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Držite stik s skupnostjo" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Naroči se" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Odjavi se" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Spletna stran" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Prav ste imeli" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "priloge" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "po" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "arhiv seznamov prejemnikov" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"članov<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "sporočil / mesec" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "več odgovorov" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "odgovorov" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "prikaži" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "vaša e-pošta..." diff --git a/addons/website_mail_channel/i18n/sr.po b/addons/website_mail_channel/i18n/sr.po new file mode 100644 index 00000000..2af2b741 --- /dev/null +++ b/addons/website_mail_channel/i18n/sr.po @@ -0,0 +1,441 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grupa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referenca" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Pretplati se" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/sr@latin.po b/addons/website_mail_channel/i18n/sr@latin.po new file mode 100644 index 00000000..15c5ffb8 --- /dev/null +++ b/addons/website_mail_channel/i18n/sr@latin.po @@ -0,0 +1,293 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Djordje Marjanovic <djordje_m@yahoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-24 09:00+0000\n" +"PO-Revision-Date: 2017-10-24 09:00+0000\n" +"Last-Translator: Djordje Marjanovic <djordje_m@yahoo.com>, 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<?xml version=\"1.0\"?>\n" +"<data><p>Hello,</p>\n" +"<p>You have requested to be subscribed to the mailing list <strong>${object.name}</strong></p>\n" +"<p>To confirm, please visit the following link:</p>\n" +"<p><strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong></p>\n" +"<p>If this was a mistake or you did not requested this action, please ignore this message.</p>\n" +"</data>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<?xml version=\"1.0\"?>\n" +"<data><p>Hello,</p>\n" +"<p>You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong></p>\n" +"<p>To confirm, please visit the following link:</p>\n" +"<p><strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong></p>\n" +"<p>If this was a mistake or you did not requested this action, please ignore this message.</p>\n" +"</data>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.footer_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"pull-right\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Please confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Please confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Šifra" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "Pretplati se" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:238 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/sv.po b/addons/website_mail_channel/i18n/sv.po new file mode 100644 index 00000000..c15111a3 --- /dev/null +++ b/addons/website_mail_channel/i18n/sv.po @@ -0,0 +1,536 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Christelle Wehbe <libanon_cristelle@hotmail.com>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arkiv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Diskussionskanal" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Gruppera" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Namn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Utgående e-post" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referens" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Prenumerera" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Avsluta prenumeration" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Webbplats" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "av" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "visa" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "din e-post..." diff --git a/addons/website_mail_channel/i18n/th.po b/addons/website_mail_channel/i18n/th.po new file mode 100644 index 00000000..df07daa6 --- /dev/null +++ b/addons/website_mail_channel/i18n/th.po @@ -0,0 +1,444 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# นัจ-ณวัสน์ เอกสิรินิธิพล <nawhath.aek@hotmail.com>, 2018 +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:34+0000\n" +"Last-Translator: Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "<span class=\"oe_snippet_thumbnail_title\">Discussion Group</span>" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:17 +#, python-format +msgid "Add a Subscribe Button" +msgstr "เพิ่มปุ่มเข้าร่วมการเป็นสมาชิก" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "ที่เก็บถาวร" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Change Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/js/website_mail_channel.editor.js:18 +#, python-format +msgid "Discussion List" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion channel" +msgstr "ช่องทางการสนทนา" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "กลุ่ม" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model:website.menu,name:website_mail_channel.menu_mailing_list +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:20 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:21 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "อ้างอิง" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "Subscribe" +msgstr "เข้าร่วมการเป็นสมาชิก" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:245 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:22 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "ยกเลิกการเป็นสมาชิก" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "โดย" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "โชว์" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.subscribe +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/tr.po b/addons/website_mail_channel/i18n/tr.po new file mode 100644 index 00000000..e8400fa2 --- /dev/null +++ b/addons/website_mail_channel/i18n/tr.po @@ -0,0 +1,564 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2020 +# Murat Durmuş <muratd@projetgrup.com>, 2020 +# Ediz Duman <neps1192@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Ediz Duman <neps1192@gmail.com>, 2020\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> posta gönder" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/>arşiv" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> abonelik iptali" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Bir elin nesi var iki elin sesi var." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Arşivler" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Avatar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Arşivleri tarayın" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Tarihe göre" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "İşleme göre" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Aboneliğini onayla ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Aboneliğini iptal etmeyi onayla ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Mesajlaşma Kanalı" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Takip Edilecek:" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Grup" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Geçersiz veya süresi dolmuş onay bağlantısı." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "E-Posta Grupları" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "E-Posta Grubu" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Adı" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Abonelikten çıkmanız mı gerekiyor? Tam burada!<span class=\"fa fa-2x fa-" +"arrow-down float-right\" role=\"img\" aria-label=\"\" title=\"Read this " +"!\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Giden Postalar" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Postala" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Referans" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Topluluğumuz ile bağlantıda kalın" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Abone Ol" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Adres" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "%s adresi zaten abone değil veya hiçbir posta listesine abone olmadı" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Üyelikten Çık" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Websitesi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Doğru oldun" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "bir onay e-postası gönderildi." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "Ekler" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "Talebi karşılayan: " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"zaten\n" +" abone olmadınız veya posta listesine hiç \n" +" abone olmadınız, adresin doğru olup olmadığını kontrol \n" +" etmek isteyebilirsiniz." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "posta listesi arşivi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"üyeler<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "mesaj / ay" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "daha fazla yanıt" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "Cevaplar" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "göster" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "Abone olundu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "posta listesine." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "Abone olmayan" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "E-posta adresiniz..." diff --git a/addons/website_mail_channel/i18n/uk.po b/addons/website_mail_channel/i18n/uk.po new file mode 100644 index 00000000..59afcf62 --- /dev/null +++ b/addons/website_mail_channel/i18n/uk.po @@ -0,0 +1,563 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Yaroslav Molochko <onorua@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Bohdan Lisnenko, 2020 +# ТАрас <tratatuta@i.ua>, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> надіслати пошту" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> архів" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> відписатися" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "Одні ми можемо зробити так мало, разом ми можемо зробити так багато" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Архів" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Аватар" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Переглянути архіви" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "За датою" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "По темі" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Підтвердити підписку на ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Підтвердити скасування підписки на ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Канал обговорення" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Нагадування " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Група" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Невірне посилання або підтвердження, що закінчилося." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Списки розсилки" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Список розсилки" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Назва" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Необхідно відписатися? Це тут! <span class=\"fa fa-2x fa-arrow-down float-" +"right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Вихідна пошта" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Опублікувати на" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Референс" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Будьте на зв'язку з нашою спільнотою" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Підписатися" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Адреса" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"За адресою%s вже скасовано підписку або ніколи не було підписано на будь-" +"який список розсилки" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Відписатися" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Веб-сайт" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Ви були праві" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "було надіслано підтвердження електронною поштою." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "прикріплення" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "від" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"вже\n" +" скасували підписку або ніколи не підписувалися на розсилку,\n" +" ви можете перевірити, чи адреса була\n" +" правильною." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "архів поштової розсилки" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"члени<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "повідомлення/місяць" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "більше відповідей" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "відповіді" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "показати" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "підписаний" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "до списку розсилок." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "скасовано підписку" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "ваш email..." diff --git a/addons/website_mail_channel/i18n/ur.po b/addons/website_mail_channel/i18n/ur.po new file mode 100644 index 00000000..1982367c --- /dev/null +++ b/addons/website_mail_channel/i18n/ur.po @@ -0,0 +1,529 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/vi.po b/addons/website_mail_channel/i18n/vi.po new file mode 100644 index 00000000..10e9e720 --- /dev/null +++ b/addons/website_mail_channel/i18n/vi.po @@ -0,0 +1,565 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# Martin Trigaux, 2020 +# fanha99 <fanha99@hotmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Minh Nguyen <ndminh210994@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.com>, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> gửi thư" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> lưu trữ " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/>hủy đăng ký " + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" +"Một mình chúng ta có thể làm rất ít, cùng nhau chúng ta có thể làm rất nhiều" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "Lưu trữ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "Ảnh đại diện" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "Duyệt tài liệu lưu trữ" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "Theo ngày" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "Theo chủ đề" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "Xác nhận đăng ký cho ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "Xác nhận hủy đăng ký cho ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "Kênh thảo luận" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "Theo dõi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "Nhóm" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "Liên kết xác nhận không hợp lệ hoặc hết hạn." + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "Danh sách Mail" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "Danh sách gửi thư" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "Tên" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"Cần hủy đăng ký? Ngay đây! <span class=\"fa fa-2x fa-arrow-down float-" +"right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "Thư gửi đi" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "Đăng lên" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "Mã phiếu" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "Giữ liên lạc với cộng đồng của chúng tôi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "Đăng ký nhận tin" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "Địa chỉ" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" +"Địa chỉ %s đã được hủy đăng ký hoặc chưa bao giờ được đăng ký vào bất kỳ " +"danh sách gửi thư nào" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "Ngừng theo dõi" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "Trang web" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "Bạn đã đúng" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "Thư xác nhận đã được gửi." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "đính kèm" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "bởi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"đã\n" +" hủy đăng ký hoặc không bao giờ được đăng ký để gửi thư\n" +" danh sách, bạn có thể muốn kiểm tra xem địa chỉ đó là\n" +" chính xác." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "danh sách lưu trữ thư" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"thành viên<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "tin nhắn / tháng" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "nhiều phản hồi hơn" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "phản hồi" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "hiển thị" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "đã đăng ký" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "đến danh sách thư." + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "hủy đăng ký" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "email của bạn..." diff --git a/addons/website_mail_channel/i18n/website_mail_channel.pot b/addons/website_mail_channel/i18n/website_mail_channel.pot new file mode 100644 index 00000000..921e45a1 --- /dev/null +++ b/addons/website_mail_channel/i18n/website_mail_channel.pot @@ -0,0 +1,529 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-11-17 06:09+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_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "" diff --git a/addons/website_mail_channel/i18n/zh_CN.po b/addons/website_mail_channel/i18n/zh_CN.po new file mode 100644 index 00000000..19c7a35b --- /dev/null +++ b/addons/website_mail_channel/i18n/zh_CN.po @@ -0,0 +1,676 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# e2f <projects@e2f.com>, 2020 +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# v2exerer <9010446@qq.com>, 2020 +# 苏州远鼎 <tiexinliu@126.com>, 2020 +# e2f_cn c5 <jarvisn@ecinnovations.com>, 2020 +# bf2549c5415a9287249cba2b8a5823c7, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# 李赋 <fu792659@163.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# John An <johnxan@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# zilin wu <binggue@qq.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> 发送邮件" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/> 归档" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/> 未订阅" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-" +"top\\: 16px; background-color\\: #F1F1F1; font-family\\:Verdana, Arial,sans-" +"serif; color\\: #454748; width\\: 100%; border-" +"collapse\\:separate;\"><tr><td align=\"center\"> <table border=\"0\" " +"cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding\\: 16px; " +"background-color\\: white; color\\: #454748; border-collapse\\:separate;\"> " +"<tbody> <!-- HEADER --> <tr> <td align=\"center\" style=\"min-width\\: " +"590px;\"> <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" " +"width=\"590\" style=\"min-width\\: 590px; background-color\\: white; " +"padding\\: 0px 8px 0px 8px; border-collapse\\:separate;\"> <tr><td " +"valign=\"middle\"> <span style=\"font-size\\: 10px;\">您的频道</span><br/> <span" +" style=\"font-size\\: 20px; font-weight\\: bold;\">${object.name}</span> " +"</td><td valign=\"middle\" align=\"right\"> <img " +"src=\"/logo.png?company=${user.company_id.id}\" style=\"padding\\: 0px; " +"margin\\: 0px; height\\: auto; width\\: 80px;\" " +"alt=\"${user.company_id.name}\"/> </td></tr> <tr><td colspan=\"2\" style" +"=\"text-align\\:center;\"> <hr width=\"100%\" style=\"background-" +"color\\:rgb(204,204,204);border\\:medium none;clear\\:both;display\\:block" +";font-size\\:0px;min-height\\:1px;line-height\\:0; margin\\:16px 0px 16px " +"0px;\"/> </td></tr> </table> </td> </tr> <!-- CONTENT --> <tr> <td " +"align=\"center\" style=\"min-width\\: 590px;\"> <table border=\"0\" " +"cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width\\: " +"590px; background-color\\: white; padding\\: 0px 8px 0px 8px; border-" +"collapse\\:separate;\"> <tr><td valign=\"top\" style=\"font-size\\: 13px;\">" +" <div style=\"margin\\: 0px; padding\\: 0px;\"> " +"你好,<br/><br/>您已请求订阅邮件列表<strong>${object.name}</strong>。 <br/><br/> " +"确认,请访问以下链接:<strong><a " +"href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong> <br/><br/> " +"如果这是一个错误或您没有请求此操作,请忽略此消息。 % if user.signature <br/> ${user.signature | safe}" +" % endif </div> </td></tr> <tr><td style=\"text-align\\:center;\"> <hr " +"width=\"100%\" style=\"background-color\\:rgb(204,204,204);border\\:medium " +"none;clear\\:both;display\\:block;font-size\\:0px;min-height\\:1px;line-" +"height\\:0; margin\\: 16px 0px 16px 0px;\"/> </td></tr> </table> </td> </tr>" +" <!-- FOOTER --> <tr> <td align=\"center\" style=\"min-width\\: 590px;\"> " +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style" +"=\"min-width\\: 590px; background-color\\: white; font-size\\: 11px; " +"padding\\: 0px 8px 0px 8px; border-collapse\\:separate;\"> <tr><td " +"valign=\"middle\" align=\"left\"> ${user.company_id.name} </td></tr> <tr><td" +" valign=\"middle\" align=\"left\" style=\"opacity\\: 0.7;\"> % if " +"user.company_id.phone ${user.company_id.phone} | %endif % if " +"user.company_id.email <a href=\"'mailto\\:%s' % ${user.company_id.email}\" " +"style=\"text-decoration\\:none; color\\: " +"#454748;\">${user.company_id.email}</a> | % endif % if " +"user.company_id.website <a href=\"'%s' % ${user.company_id.website}\" style" +"=\"text-decoration\\:none; color\\: #454748;\">${user.company_id.website} " +"</a> % endif </td></tr> </table> </td> </tr> </tbody> </table> </td></tr> " +"<!-- POWERED BY --> <tr><td align=\"center\" style=\"min-width\\: 590px;\"> " +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style" +"=\"min-width\\: 590px; background-color\\: #F1F1F1; color\\: #454748; " +"padding\\: 8px; border-collapse\\:separate;\"> <tr><td style=\"text-align\\:" +" center; font-size\\: 13px;\"> Powered by <a target=\"_blank\" " +"href=\"https\\://www.odoo.com?utm_source=db&utm_medium=mail\" " +"style=\"color\\: #875A7B;\">Odoo</a> </td></tr> </table> </td></tr> </table>" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-" +"top\\: 16px; background-color\\: #F1F1F1; font-family\\:Verdana, Arial,sans-" +"serif; color\\: #454748; width\\: 100%; border-" +"collapse\\:separate;\"><tr><td align=\"center\"> <table border=\"0\" " +"cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding\\: 16px; " +"background-color\\: white; color\\: #454748; border-collapse\\:separate;\"> " +"<tbody> <!-- HEADER --> <tr> <td align=\"center\" style=\"min-width\\: " +"590px;\"> <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" " +"width=\"590\" style=\"min-width\\: 590px; background-color\\: white; " +"padding\\: 0px 8px 0px 8px; border-collapse\\:separate;\"> <tr><td " +"valign=\"middle\"> <span style=\"font-size\\: 10px;\">您的频道</span><br/> <span" +" style=\"font-size\\: 20px; font-weight\\: bold;\">${object.name}</span> " +"</td><td valign=\"middle\" align=\"right\"> <img " +"src=\"/logo.png?company=${user.company_id.id}\" style=\"padding\\: 0px; " +"margin\\: 0px; height\\: auto; width\\: 80px;\" " +"alt=\"${user.company_id.name}\"/> </td></tr> <tr><td colspan=\"2\" style" +"=\"text-align\\:center;\"> <hr width=\"100%\" style=\"background-" +"color\\:rgb(204,204,204);border\\:medium none;clear\\:both;display\\:block" +";font-size\\:0px;min-height\\:1px;line-height\\:0; margin\\:16px 0px 16px " +"0px;\"/> </td></tr> </table> </td> </tr> <!-- CONTENT --> <tr> <td " +"align=\"center\" style=\"min-width\\: 590px;\"> <table border=\"0\" " +"cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width\\: " +"590px; background-color\\: white; padding\\: 0px 8px 0px 8px; border-" +"collapse\\:separate;\"> <tr><td valign=\"top\" style=\"font-size\\: 13px;\">" +" <div style=\"margin\\: 0px; padding\\: 0px;\"> 你好,<br/><br/> " +"您已请求退订邮件列表<strong>${object.name}</strong>。 <br/><br/> 确认,请访问以下链接: <strong><a" +" href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>。 <br/><br/> " +"如果这是一个错误或您没有请求此操作,请忽略此消息。 % if user.signature\\: <br/> ${user.signature | " +"safe} % endif </div> </td></tr> <tr><td style=\"text-align\\:center;\"> <hr " +"width=\"100%\" style=\"background-color\\:rgb(204,204,204);border\\:medium " +"none;clear\\:both;display\\:block;font-size\\:0px;min-height\\:1px;line-" +"height\\:0; margin\\: 16px 0px 16px 0px;\"/> </td></tr> </table> </td> </tr>" +" <!-- FOOTER --> <tr> <td align=\"center\" style=\"min-width\\: 590px;\"> " +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style" +"=\"min-width\\: 590px; background-color\\: white; font-size\\: 11px; " +"padding\\: 0px 8px 0px 8px; border-collapse\\:separate;\"> <tr><td " +"valign=\"middle\" align=\"left\"> ${user.company_id.name} </td></tr> <tr><td" +" valign=\"middle\" align=\"left\" style=\"opacity\\: 0.7;\"> % if " +"user.company_id.phone ${user.company_id.phone} | %endif % if " +"user.company_id.email <a href=\"'mailto\\:%s' % ${user.company_id.email}\" " +"style=\"text-decoration\\:none; color\\: " +"#454748;\">${user.company_id.email}</a> | % endif % if " +"user.company_id.website <a href=\"'%s' % ${user.company_id.website}\" style" +"=\"text-decoration\\:none; color\\: #454748;\">${user.company_id.website} " +"</a> % endif </td></tr> </table> </td> </tr> </tbody> </table> </td></tr> " +"<!-- POWERED BY --> <tr><td align=\"center\" style=\"min-width\\: 590px;\"> " +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style" +"=\"min-width\\: 590px; background-color\\: #F1F1F1; color\\: #454748; " +"padding\\: 8px; border-collapse\\:separate;\"> <tr><td style=\"text-align\\:" +" center; font-size\\: 13px;\"> Powered by <a target=\"_blank\" " +"href=\"https\\://www.odoo.com?utm_source=db&utm_medium=mail\" " +"style=\"color\\: #875A7B;\">Odoo</a> </td></tr> </table> </td></tr> </table>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "一个人的力量有限,团队的力量无坚不摧" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "归档" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "头像" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "浏览存档" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "日期" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "按线索" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "确认订阅 ${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "确认退订 ${object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "在后端创建一个公共讨论组" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "讨论频道" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "催款" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "群组" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "非法或者过期的确认链接。" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "邮件列表" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "邮件列表" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "名称" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"需要退订么? 点击这里! <span class=\"fa fa-2x fa-arrow-down float-right\" role=\"img\"" +" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "寄出邮件" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "寄到" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "参考" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "与我们的社区保持联系" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "订阅" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "地址" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "该地址%s已取消订阅或从未订阅任何邮件列表" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "退订" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "网站" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "您已正确订阅/取消订阅邮件列表" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "已发送确认EMail。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "附件" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "单位" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"已\n" +" 取消订阅或从未订阅邮件\n" +" 列表,您可能希望查看地址是否\n" +" 正确。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "邮件列表存档 " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"成员<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "消息 / 月" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "更多的回复" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "回复" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "显示" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "已订阅" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "至邮件列表。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "退订" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "您的EMail..." diff --git a/addons/website_mail_channel/i18n/zh_TW.po b/addons/website_mail_channel/i18n/zh_TW.po new file mode 100644 index 00000000..3aea437b --- /dev/null +++ b/addons/website_mail_channel/i18n/zh_TW.po @@ -0,0 +1,557 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mail_channel +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-11-17 06:09+0000\n" +"PO-Revision-Date: 2020-09-07 08:22+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" +msgstr "- <i class=\"fa fa-calendar\" role=\"img\" aria-label=\"Date\" title=\"Date\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" +msgstr "" +"- <i class=\"fa fa-paperclip\" role=\"img\" aria-label=\"Attachments\" " +"title=\"Attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-left\" role=\"img\" aria-label=\"Previous message\" " +"title=\"Previous message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" +msgstr "" +"<i class=\"fa fa-arrow-right\" role=\"img\" aria-label=\"Next message\" " +"title=\"Next message\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show attachments\"" +" title=\"Show attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-down\" role=\"img\" aria-label=\"Show replies\" " +"title=\"Show replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide " +"attachments\" title=\"Hide attachments\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" +msgstr "" +"<i class=\"fa fa-chevron-right\" role=\"img\" aria-label=\"Hide replies\" " +"title=\"Hide replies\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" +msgstr "<i class=\"fa fa-envelope-o\" role=\"img\" aria-label=\"Alias\" title=\"Alias\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-envelope-o\"/> send mail" +msgstr "<i class=\"fa fa-envelope-o\"/> 寄送信件" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-file-o\"/> archives" +msgstr "<i class=\"fa fa-file-o\"/>檔案" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" +msgstr "" +"<i class=\"fa fa-fw fa-user\" role=\"img\" aria-label=\"Recipients\" " +"title=\"Recipients\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "<i class=\"fa fa-times\"/> unsubscribe" +msgstr "<i class=\"fa fa-times\"/>退訂" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_subscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be subscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model:mail.template,body_html:website_mail_channel.mail_template_list_unsubscribe +msgid "" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"padding-top: 16px; background-color: #F1F1F1; font-family:Verdana, Arial,sans-serif; color: #454748; width: 100%; border-collapse:separate;\"><tr><td align=\"center\">\n" +"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"padding: 16px; background-color: white; color: #454748; border-collapse:separate;\">\n" +"<tbody>\n" +" <!-- HEADER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\">\n" +" <span style=\"font-size: 10px;\">Your Channel</span><br/>\n" +" <span style=\"font-size: 20px; font-weight: bold;\">${object.name}</span>\n" +" </td><td valign=\"middle\" align=\"right\">\n" +" <img src=\"/logo.png?company=${user.company_id.id}\" style=\"padding: 0px; margin: 0px; height: auto; width: 80px;\" alt=\"${user.company_id.name}\"/>\n" +" </td></tr>\n" +" <tr><td colspan=\"2\" style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin:16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- CONTENT -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"top\" style=\"font-size: 13px;\">\n" +" <div style=\"margin: 0px; padding: 0px;\">\n" +" Hello,<br/><br/>\n" +" You have requested to be unsubscribed to the mailing list <strong>${object.name}</strong>.\n" +" <br/><br/>\n" +" To confirm, please visit the following link: <strong><a href=\"${ctx['token_url']}\">${ctx['token_url']}</a></strong>.\n" +" <br/><br/>\n" +" If this was a mistake or you did not requested this action, please ignore this message.\n" +" % if user.signature:\n" +" <br/>\n" +" ${user.signature | safe}\n" +" % endif\n" +" </div>\n" +" </td></tr>\n" +" <tr><td style=\"text-align:center;\">\n" +" <hr width=\"100%\" style=\"background-color:rgb(204,204,204);border:medium none;clear:both;display:block;font-size:0px;min-height:1px;line-height:0; margin: 16px 0px 16px 0px;\"/>\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +" <!-- FOOTER -->\n" +" <tr>\n" +" <td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: white; font-size: 11px; padding: 0px 8px 0px 8px; border-collapse:separate;\">\n" +" <tr><td valign=\"middle\" align=\"left\">\n" +" ${user.company_id.name}\n" +" </td></tr>\n" +" <tr><td valign=\"middle\" align=\"left\" style=\"opacity: 0.7;\">\n" +" % if user.company_id.phone\n" +" ${user.company_id.phone} |\n" +" %endif\n" +" % if user.company_id.email\n" +" <a href=\"'mailto:%s' % ${user.company_id.email}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.email}</a> |\n" +" % endif\n" +" % if user.company_id.website\n" +" <a href=\"'%s' % ${user.company_id.website}\" style=\"text-decoration:none; color: #454748;\">${user.company_id.website}\n" +" </a>\n" +" % endif\n" +" </td></tr>\n" +" </table>\n" +" </td>\n" +" </tr>\n" +"</tbody>\n" +"</table>\n" +"</td></tr>\n" +"<!-- POWERED BY -->\n" +"<tr><td align=\"center\" style=\"min-width: 590px;\">\n" +" <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"590\" style=\"min-width: 590px; background-color: #F1F1F1; color: #454748; padding: 8px; border-collapse:separate;\">\n" +" <tr><td style=\"text-align: center; font-size: 13px;\">\n" +" Powered by <a target=\"_blank\" href=\"https://www.odoo.com?utm_source=db&utm_medium=mail\" style=\"color: #875A7B;\">Odoo</a>\n" +" </td></tr>\n" +" </table>\n" +"</td></tr>\n" +"</table>\n" +" " +msgstr "" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Alone we can do so little, together we can do so much" +msgstr "一個人的力量有限,團隊的力量無堅不摧" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "Archives" +msgstr "封存" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "Avatar" +msgstr "頭像" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Browse archives" +msgstr "瀏覽存檔" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By date" +msgstr "日期" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "By thread" +msgstr "按線索" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_subscribe +msgid "Confirm subscription to ${object.name}" +msgstr "確認訂閱${object.name}" + +#. module: website_mail_channel +#: model:mail.template,subject:website_mail_channel.mail_template_list_unsubscribe +msgid "Confirm unsubscription to ${object.name}" +msgstr "確認取消訂閱$ {object.name}" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel_options +msgid "Create a public discussion group in your backend" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_channel +msgid "Discussion Channel" +msgstr "討論群組" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__display_name +#: model:ir.model.fields,field_description:website_mail_channel.field_website__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Follow-Ups" +msgstr "催款" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Group" +msgstr "組" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel__id +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail__id +#: model:ir.model.fields,field_description:website_mail_channel.field_website__id +msgid "ID" +msgstr "ID" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.invalid_token_subscription +msgid "Invalid or expired confirmation link." +msgstr "非法或者過期的確認鏈接。" + +#. module: website_mail_channel +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_channel____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_mail_mail____last_update +#: model:ir.model.fields,field_description:website_mail_channel.field_website____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/website.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +#, python-format +msgid "Mailing Lists" +msgstr "信件列表" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Mailing-List" +msgstr "信件列表" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "Name" +msgstr "名稱" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"Need to unsubscribe? It's right here! <span class=\"fa fa-2x fa-arrow-down " +"float-right\" role=\"img\" aria-label=\"\" title=\"Read this !\"/>" +msgstr "" +"需要取消訂閱嗎? 它就在這裡!<span class=\"fa fa-2x fa-arrow-down float-right\" " +"role=\"img\" aria-label=\"\" title=\"Read this !\"/>" + +#. module: website_mail_channel +#. openerp-web +#: code:addons/website_mail_channel/static/src/snippets/s_channel/options.js:0 +#, python-format +msgid "New Mail Channel" +msgstr "" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_mail_mail +msgid "Outgoing Mails" +msgstr "出向信件" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#, python-format +msgid "Post to" +msgstr "寄到" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "Reference" +msgstr "編號" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "Stay in touch with our Community" +msgstr "與我們的社區保持聯繫" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "Subscribe" +msgstr "訂閱" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "The address" +msgstr "地址" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/controllers/main.py:0 +#, python-format +msgid "" +"The address %s is already unsubscribed or was never subscribed to any " +"mailing list" +msgstr "地址 %s 已經取消訂閱或從未訂閱任何信件列表" + +#. module: website_mail_channel +#: code:addons/website_mail_channel/models/mail_mail.py:0 +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#, python-format +msgid "Unsubscribe" +msgstr "退訂" + +#. module: website_mail_channel +#: model:ir.model,name:website_mail_channel.model_website +msgid "Website" +msgstr "網站" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "You have been correctly" +msgstr "您已正確操作" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "a confirmation email has been sent." +msgstr "已發送確認電子信件。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +msgid "attachments" +msgstr "附件" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "by" +msgstr "by" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.not_subscribed +msgid "" +"is already\n" +" unsubscribed or was never subscribed to the mailing\n" +" list, you may want to check that the address was\n" +" correct." +msgstr "" +"已\n" +" 取消訂閱或從未訂閱信件\n" +" 列表,您可能希望查看地址是否\n" +" 正確。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_message +#: model_terms:ir.ui.view,arch_db:website_mail_channel.group_messages +msgid "mailing list archives" +msgstr "信件列表存檔 " + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "" +"members<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" +msgstr "" +"會員<br/>\n" +" <i class=\"fa fa-fw fa-envelope-o\" role=\"img\" aria-label=\"Traffic\" title=\"Traffic\"/>" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +msgid "messages / month" +msgstr "消息 / 月" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "more replies" +msgstr "更多的回覆" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "replies" +msgstr "回覆" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.messages_short +msgid "show" +msgstr "顯示" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "subscribed" +msgstr "已訂閱" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "to the mailing list." +msgstr "至信件列表。" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.confirmation_subscription +msgid "unsubscribed" +msgstr "退訂" + +#. module: website_mail_channel +#: model_terms:ir.ui.view,arch_db:website_mail_channel.mail_channels +#: model_terms:ir.ui.view,arch_db:website_mail_channel.s_channel +msgid "your email..." +msgstr "您的電子信件..." diff --git a/addons/website_mail_channel/models/__init__.py b/addons/website_mail_channel/models/__init__.py new file mode 100644 index 00000000..f5c2bbb5 --- /dev/null +++ b/addons/website_mail_channel/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import mail_channel +from . import mail_mail +from . import website diff --git a/addons/website_mail_channel/models/mail_channel.py b/addons/website_mail_channel/models/mail_channel.py new file mode 100644 index 00000000..89d72cd7 --- /dev/null +++ b/addons/website_mail_channel/models/mail_channel.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import hashlib +import hmac + +from werkzeug import urls + +from odoo import models +from odoo.addons.http_routing.models.ir_http import slug + + +class MailGroup(models.Model): + _inherit = 'mail.channel' + + def _notify_email_header_dict(self): + headers = super(MailGroup, self)._notify_email_header_dict() + base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url') + headers['List-Archive'] = '<%s/groups/%s>' % (base_url, slug(self)) + headers['List-Subscribe'] = '<%s/groups>' % (base_url) + headers['List-Unsubscribe'] = '<%s/groups?unsubscribe>' % (base_url,) + return headers + + def _send_confirmation_email(self, partner_ids, unsubscribe=False): + website = self.env['website'].get_current_website() + base_url = website.get_base_url() + + route = "/groups/%(action)s/%(channel)s/%(partner)s/%(token)s" + if unsubscribe: + template = self.env.ref('website_mail_channel.mail_template_list_unsubscribe') + action = 'unsubscribe' + else: + template = self.env.ref('website_mail_channel.mail_template_list_subscribe') + action = 'subscribe' + + for partner_id in partner_ids: + # generate a new token per subscriber + token = self._generate_action_token(partner_id, action=action) + + token_url = urls.url_join(base_url, route % { + 'action': action, + 'channel': self.id, + 'partner': partner_id, + 'token': token, + }) + template.with_context(token_url=token_url).send_mail( + self.id, + force_send=True, + email_values={ + 'recipient_ids': [(4, partner_id)], + 'email_from': website.company_id.email, + } + ) + + return True + + def _generate_action_token(self, partner_id, action='unsubscribe'): + self.ensure_one() + secret = self.env['ir.config_parameter'].sudo().get_param('database.secret') + data = '$'.join([ + str(self.id), + str(partner_id), + action]) + return hmac.new(secret.encode('utf-8'), data.encode('utf-8'), hashlib.md5).hexdigest() diff --git a/addons/website_mail_channel/models/mail_mail.py b/addons/website_mail_channel/models/mail_mail.py new file mode 100644 index 00000000..271e245e --- /dev/null +++ b/addons/website_mail_channel/models/mail_mail.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models, tools, _ +from odoo.addons.http_routing.models.ir_http import slug + + +class MailMail(models.Model): + _inherit = 'mail.mail' + + def _send_prepare_body(self): + """ Short-circuit parent method for mail groups, replace the default + footer with one appropriate for mailing-lists.""" + if self.model == 'mail.channel' and self.res_id: + # no super() call on purpose, no private links that could be quoted! + channel = self.env['mail.channel'].browse(self.res_id) + base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url') + vals = { + 'maillist': _('Mailing-List'), + 'post_to': _('Post to'), + 'unsub': _('Unsubscribe'), + 'mailto': 'mailto:%s@%s' % (channel.alias_name, channel.alias_domain), + 'group_url': '%s/groups/%s' % (base_url, slug(channel)), + 'unsub_url': '%s/groups?unsubscribe' % (base_url,), + } + footer = """_______________________________________________ + %(maillist)s: %(group_url)s + %(post_to)s: %(mailto)s + %(unsub)s: %(unsub_url)s + """ % vals + body = tools.append_content_to_html(self.body, footer, container_tag='div') + return body + else: + return super(MailMail, self)._send_prepare_body() diff --git a/addons/website_mail_channel/models/website.py b/addons/website_mail_channel/models/website.py new file mode 100644 index 00000000..854e99bd --- /dev/null +++ b/addons/website_mail_channel/models/website.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, _ +from odoo.addons.http_routing.models.ir_http import url_for + + +class Website(models.Model): + _inherit = "website" + + def get_suggested_controllers(self): + suggested_controllers = super(Website, self).get_suggested_controllers() + suggested_controllers.append((_('Mailing Lists'), url_for('/groups'), 'website_mail_channel')) + return suggested_controllers diff --git a/addons/website_mail_channel/static/description/icon.png b/addons/website_mail_channel/static/description/icon.png Binary files differnew file mode 100644 index 00000000..2c737fbe --- /dev/null +++ b/addons/website_mail_channel/static/description/icon.png diff --git a/addons/website_mail_channel/static/description/icon.svg b/addons/website_mail_channel/static/description/icon.svg new file mode 100644 index 00000000..779be805 --- /dev/null +++ b/addons/website_mail_channel/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#CD7690"/><stop offset="100%" stop-color="#CA5377"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M42.474 69H4c-2 0-4-.146-4-4.075V39.178L21 15h30l-2 6.113h3l-3 5.095h6l-5 10.188 4.213 1.034L53 54.736 42.474 69z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><path fill="#000" d="M15 36.646h12.813l2.562 3.416h10.25l3.417-3.416H56l-2.563 19.646H17.563L15 36.646zm.854-10.25h39.292v7.687h-5.98v-3.416H20.98v3.416h-5.125v-7.687zm2.563-5.125h34.166v3.416H18.417v-3.416zM20.979 17h29.896v2.563H20.979V17z" opacity=".3"/><path fill="#FFF" d="M15 34.646h12.813l2.562 3.416h10.25l3.417-3.416H56l-2.563 19.646H17.563L15 34.646zm.854-10.25h39.292v7.687h-5.98v-3.416H20.98v3.416h-5.125v-7.687zm2.563-5.125h34.166v3.416H18.417v-3.416zM20.979 15h29.896v2.563H20.979V15z"/></g></g></svg>
\ No newline at end of file diff --git a/addons/website_mail_channel/static/src/css/website_mail_channel.css b/addons/website_mail_channel/static/src/css/website_mail_channel.css new file mode 100644 index 00000000..2365860f --- /dev/null +++ b/addons/website_mail_channel/static/src/css/website_mail_channel.css @@ -0,0 +1,7 @@ +.o_mg_link_show { + display: none; +} + +.o_mg_link_content { + display: none; +} diff --git a/addons/website_mail_channel/static/src/js/website_mail_channel.js b/addons/website_mail_channel/static/src/js/website_mail_channel.js new file mode 100644 index 00000000..30928d78 --- /dev/null +++ b/addons/website_mail_channel/static/src/js/website_mail_channel.js @@ -0,0 +1,71 @@ +odoo.define('website_mail_channel', function (require) { +'use strict'; + +var publicWidget = require('web.public.widget'); + +publicWidget.registry.websiteMailChannel = publicWidget.Widget.extend({ + selector: '#wrapwrap', + events: { + 'click .o_mg_link_hide': '_onHideLinkClick', + 'click .o_mg_link_show': '_onShowLinkClick', + 'click button.o_mg_read_more': '_onReadMoreClick', + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + * @param {Event} ev + */ + _onHideLinkClick: function (ev) { + ev.preventDefault(); + ev.stopPropagation(); + var $link = $(ev.currentTarget); + var $container = $link.parents('div').first(); + $container.find('.o_mg_link_hide').first().hide(); + $container.find('.o_mg_link_show').first().show(); + $container.find('.o_mg_link_content').first().show(); + }, + /** + * @private + * @param {Event} ev + */ + _onShowLinkClick: function (ev) { + ev.preventDefault(); + ev.stopPropagation(); + var $link = $(ev.currentTarget); + var $container = $link.parents('div').first(); + $container.find('.o_mg_link_hide').first().show(); + $container.find('.o_mg_link_show').first().hide(); + $container.find('.o_mg_link_content').first().hide(); + }, + /** + * @private + * @param {Event} ev + */ + _onReadMoreClick: function (ev) { + var $link = $(ev.target); + this._rpc({ + route: $link.data('href'), + params: { + last_displayed_id: $link.data('msg-id'), + }, + }).then(function (data) { + if (!data) { + return; + } + var $threadContainer = $link.parents('.o_mg_replies').first().find('ul.list-unstyled'); + if ($threadContainer) { + var $lastMsg = $threadContainer.find('li.media').last(); + $(data).find('li.media').insertAfter($lastMsg); + $(data).find('.o_mg_read_more').parent().appendTo($threadContainer); + } + var $showMore = $link.parent(); + $showMore.remove(); + return; + }); + }, +}); +}); diff --git a/addons/website_mail_channel/static/src/snippets/s_channel/000.js b/addons/website_mail_channel/static/src/snippets/s_channel/000.js new file mode 100644 index 00000000..afcd22c6 --- /dev/null +++ b/addons/website_mail_channel/static/src/snippets/s_channel/000.js @@ -0,0 +1,148 @@ +odoo.define('website_mail_channel.s_channel', function (require) { +'use strict'; + +var publicWidget = require('web.public.widget'); + +publicWidget.registry.Channel = publicWidget.Widget.extend({ + selector: '.s_channel', + disabledInEditableMode: false, + read_events: { + 'click .js_follow_btn, .js_unfollow_btn': '_onFollowUnFollowBtnClick', + 'click .js_follow_btn': '_onFollowBtnClick', + }, + + /** + * @override + */ + start: function () { + var self = this; + this.is_user = false; + var unsubscribePage = window.location.search.slice(1).split('&').indexOf("unsubscribe") >= 0; + + var always = function (data) { + self.is_user = data.is_user; + self.email = data.email; + self.$target.find('.js_mg_link').attr('href', '/groups/' + self.$target.data('id')); + if (unsubscribePage && self.is_user) { + self.$target.find(".js_mg_follow_form").remove(); + } + self._toggleSubscription(data.is_member ? 'on' : 'off', data.email); + self.$target.removeClass('d-none'); + }; + + this._rpc({ + route: '/groups/is_member', + params: { + model: this.$target.data('object'), + channel_id: this.$target.data('id'), + get_alias_info: true, + }, + }).then(always).guardedCatch(always); + + // not if editable mode to allow designer to edit alert field + if (!this.editableMode) { + this.$('> .alert').addClass('d-none'); + this.$('> .input-group-append.d-none').removeClass('d-none'); + } + return this._super.apply(this, arguments); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @private + */ + _getAliasInfo: function () { + var self = this; + if (! this.$target.data('id')) { + return Promise.resolve(); + } + return this._rpc({route: '/groups/' + this.$target.data('id') + '/get_alias_info'}).then(function (data) { + if (data.alias_name) { + self.$target.find('.js_mg_email').attr('href', 'mailto:' + data.alias_name); + self.$target.find('.js_mg_email').removeClass('d-none'); + } else { + self.$target.find('.js_mg_email').addClass('d-none'); + } + }); + }, + /** + * @private + */ + _toggleSubscription: function (follow, email) { + // .js_mg_follow_form contains subscribe form + // .js_mg_details contains send/archives/unsubscribe links + // .js_mg_confirmation contains message warning has been sent + var aliasDone = this._getAliasInfo(); + if (follow === "on") { + // user is connected and can unsubscribe + this.$target.find(".js_mg_follow_form").addClass('d-none'); + this.$target.find(".js_mg_details").removeClass('d-none'); + this.$target.find(".js_mg_confirmation").addClass('d-none'); + } else if (follow === "off") { + // user is connected and can subscribe + this.$target.find(".js_mg_follow_form").removeClass('d-none'); + this.$target.find(".js_mg_details").addClass('d-none'); + this.$target.find(".js_mg_confirmation").addClass('d-none'); + } else if (follow === "email") { + // a confirmation email has been sent + this.$target.find(".js_mg_follow_form").addClass('d-none'); + this.$target.find(".js_mg_details").addClass('d-none'); + this.$target.find(".js_mg_confirmation").removeClass('d-none'); + } else { + console.error("Unknown subscription action", follow); + } + this.$target.find('input.js_follow_email') + .val(email ? email : "") + .attr("disabled", follow === "on" || (email.length && this.is_user) ? "disabled" : false); + this.$target.attr("data-follow", follow); + return Promise.resolve(aliasDone); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @private + */ + _onFollowBtnClick: function (ev) { + if ($(ev.currentTarget).closest('.js_mg_follow_form').length) { + this.$('.js_follow_email').val($(ev.currentTarget).closest('.js_mg_follow_form').find('.js_follow_email').val()); + } + }, + /** + * @private + */ + _onFollowUnFollowBtnClick: function (ev) { + ev.preventDefault(); + var self = this; + var $email = this.$target.find(".js_follow_email"); + + if ($email.length && !$email.val().match(/.+@.+/)) { + this.$target.addClass('o_has_error').find('.form-control, .custom-select').addClass('is-invalid'); + return false; + } + this.$target.removeClass('o_has_error').find('.form-control, .custom-select').removeClass('is-invalid'); + + var subscriptionAction = this.$target.attr("data-follow") || "off"; + if (window.location.search.slice(1).split('&').indexOf("unsubscribe") >= 0) { + // force unsubscribe mode via URI /groups?unsubscribe + subscriptionAction = 'on'; + } + this._rpc({ + route: '/groups/subscription', + params: { + 'channel_id': +this.$target.data('id'), + 'object': this.$target.data('object'), + 'subscription': subscriptionAction, + 'email': $email.length ? $email.val() : false, + }, + }).then(function (follow) { + self._toggleSubscription(follow, self.email); + }); + }, +}); +}); diff --git a/addons/website_mail_channel/static/src/snippets/s_channel/options.js b/addons/website_mail_channel/static/src/snippets/s_channel/options.js new file mode 100644 index 00000000..5b51bb6a --- /dev/null +++ b/addons/website_mail_channel/static/src/snippets/s_channel/options.js @@ -0,0 +1,107 @@ +odoo.define('website_mail_channel.s_channel_options', function (require) { +'use strict'; + +var core = require('web.core'); +var options = require('web_editor.snippets.options'); +var wUtils = require('website.utils'); + +var _t = core._t; + +options.registry.Channel = options.Class.extend({ + /** + * @override + */ + async start() { + await this._super(...arguments); + this.publicChannels = await this._getPublicChannels(); + }, + /** + * @override + */ + cleanForSave: function () { + this.$target.addClass('d-none'); + }, + /** + * If we have already created channels => select the first one + * else => modal prompt (create a new channel) + * + * @override + */ + onBuilt() { + if (this.publicChannels.length) { + this.$target[0].dataset.id = this.publicChannels[0][0]; + } else { + const widget = this._requestUserValueWidgets('create_mail_channel_opt')[0]; + widget.$el.click(); + } + }, + + //-------------------------------------------------------------------------- + // Options + //-------------------------------------------------------------------------- + + /** + * Creates a new mail.channel through a modal prompt. + * + * @see this.selectClass for parameters + */ + createChannel: function (previewMode, widgetValue, params) { + var self = this; + return wUtils.prompt({ + id: "editor_new_mail_channel_subscribe", + window_title: _t("New Mail Channel"), + input: _t("Name"), + }).then(function (result) { + var name = result.val; + if (!name) { + return; + } + return self._rpc({ + model: 'mail.channel', + method: 'create', + args: [{ + name: name, + public: 'public', + }], + }).then(function (id) { + self.$target.attr("data-id", id); + return self._rerenderXML(); + }); + }); + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @override + */ + _renderCustomXML(uiFragment) { + // TODO remove this part in master + const createChannelEl = uiFragment.querySelector('we-button[data-create-channel]'); + createChannelEl.dataset.name = 'create_mail_channel_opt'; + + return this._getPublicChannels().then(channels => { + const menuEl = uiFragment.querySelector('.select_discussion_list'); + for (const channel of channels) { + const el = document.createElement('we-button'); + el.dataset.selectDataAttribute = channel[0]; + el.textContent = channel[1]; + menuEl.appendChild(el); + } + }); + }, + /** + * @private + * @return {Promise} + */ + _getPublicChannels() { + return this._rpc({ + model: 'mail.channel', + method: 'name_search', + args: ['', [['public', '=', 'public']]], + }); + }, +}); +}); diff --git a/addons/website_mail_channel/tests/__init__.py b/addons/website_mail_channel/tests/__init__.py new file mode 100644 index 00000000..2e3364d7 --- /dev/null +++ b/addons/website_mail_channel/tests/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import test_unsubscribe diff --git a/addons/website_mail_channel/tests/test_unsubscribe.py b/addons/website_mail_channel/tests/test_unsubscribe.py new file mode 100644 index 00000000..8da7bb5b --- /dev/null +++ b/addons/website_mail_channel/tests/test_unsubscribe.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- + +from odoo.tests import common, tagged +from odoo.tools.misc import mute_logger, ustr + + +@tagged('-at_install', 'post_install') +class TestConfirmUnsubscribe(common.HttpCase): + def setUp(self): + super(TestConfirmUnsubscribe, self).setUp() + self.partner = self.env['res.partner'].create({ + 'name': 'Bob', + 'email': 'bob@bob.bob' + }) + self.mailing_list = self.env['mail.channel'].create({ + 'name': 'Test Mailing List', + 'public': 'public', + }) + self.token = self.mailing_list._generate_action_token(self.partner.id, action='unsubscribe') + + def test_not_subscribed(self): + """Test warning works""" + self._unsubscribe_check("The address %s is already unsubscribed" % self.partner.email) + + @mute_logger('odoo.addons.website.models.ir_ui_view') + def test_not_subscribed_no_template(self): + """ Test warning works on db without template (code update w/o module update) """ + self.env.ref('website_mail_channel.not_subscribed').unlink() + self.assertEqual( + self.env['ir.model.data'].search_count([ + ('module', '=', 'website_mail_channel'), + ('name', '=', 'not_subscribed'), + ]), 0, 'XID for template should have been deleted') + + self._unsubscribe_check("The address %s is already unsubscribed or was never subscribed to any mailing list" % self.partner.email) + + def test_wrong_token(self): + self.mailing_list.sudo().write({ + 'channel_partner_ids': [(4, self.partner.id, False)] + }) + self.token = 'XXX' + + self._unsubscribe_check("Invalid or expired confirmation link.") + + def test_successful_unsubscribe(self): + self.mailing_list.sudo().write({ + 'channel_partner_ids': [(4, self.partner.id, False)] + }) + + self._unsubscribe_check("You have been correctly unsubscribed") + + def _unsubscribe_check(self, text): + url = "/groups/unsubscribe/{}/{}/{}".format( + self.mailing_list.id, self.partner.id, + self.token + ) + r = self.url_open(url) + body = ustr(r.content) + # normalize space to make matching simpler + self.assertIn(text, u' '.join(body.split())) diff --git a/addons/website_mail_channel/views/assets.xml b/addons/website_mail_channel/views/assets.xml new file mode 100644 index 00000000..c73683f0 --- /dev/null +++ b/addons/website_mail_channel/views/assets.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="assets_frontend" inherit_id="website.assets_frontend"> + <xpath expr="//link[last()]" position="after"> + <link rel="stylesheet" href="/website_mail_channel/static/src/css/website_mail_channel.css"/> + </xpath> + <xpath expr="//script[last()]" position="after"> + <script type="text/javascript" src="/website_mail_channel/static/src/js/website_mail_channel.js"/> + </xpath> +</template> + +<template id="assets_wysiwyg" inherit_id="website.assets_wysiwyg" name="Website Mail Channel Editor Assets"> + <xpath expr="//script[last()]" position="after"> + <script type="text/javascript" src="/website_mail_channel/static/src/snippets/s_channel/options.js"/> + </xpath> +</template> + +</odoo> diff --git a/addons/website_mail_channel/views/snippets/s_channel.xml b/addons/website_mail_channel/views/snippets/s_channel.xml new file mode 100644 index 00000000..78217040 --- /dev/null +++ b/addons/website_mail_channel/views/snippets/s_channel.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="s_channel" name="Discussion Group"> + <div class="s_channel" + data-id="0" data-object="mail.channel" data-follow="off"> + <div class="input-group js_mg_follow_form"> + <input type="email" name="email" placeholder="your email..." + class="js_follow_email form-control"/> + <span class="input-group-append"> + <button href="#" class="btn btn-primary js_follow_btn">Subscribe</button> + </span> + </div> + <p class="js_mg_details d-none"> + <span class="js_mg_email d-none"><a href="#" class="js_mg_email"><i class="fa fa-envelope-o"/> send mail</a> - </span> + <a href="#" class="js_mg_link"><i class="fa fa-file-o"/> archives</a> - + <a role="button" href="#" class="js_unfollow_btn"><i class="fa fa-times"/> unsubscribe</a> + </p> + <p class="js_mg_confirmation d-none"> + a confirmation email has been sent. + </p> + </div> +</template> + +<template id="s_channel_options" inherit_id="website.snippet_options"> + <xpath expr="." position="inside"> + <div data-js='Channel' + data-selector=".s_channel" + data-drop-near="p, h1, h2, h3, blockquote, .card"> + <we-row> + <we-select class="select_discussion_list" data-attribute-name="id" data-no-preview="true"> + <!-- 'we-button' added programmatically with DB data --> + </we-select> + <we-button class="fa fa-fw fa-plus" title="Create a public discussion group in your backend" + data-create-channel="" data-no-preview="true" data-name="create_mail_channel_opt"/> + </we-row> + </div> + </xpath> +</template> + +<template id="assets_snippet_s_channel_js_000" inherit_id="website.assets_frontend"> + <xpath expr="//script[last()]" position="after"> + <script type="text/javascript" src="/website_mail_channel/static/src/snippets/s_channel/000.js"/> + </xpath> +</template> + +</odoo> diff --git a/addons/website_mail_channel/views/snippets/snippets.xml b/addons/website_mail_channel/views/snippets/snippets.xml new file mode 100644 index 00000000..6ea51216 --- /dev/null +++ b/addons/website_mail_channel/views/snippets/snippets.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="remove_external_snippets" inherit_id="website.external_snippets"> + <xpath expr="//t[@t-install='website_mail_channel']" position="replace"/> +</template> + +<template id="snippets" inherit_id="website.snippets" name="Snippet Subscribe"> + <xpath expr="//t[@id='mail_channel_discussion_group_hook']" position="replace"> + <t t-snippet="website_mail_channel.s_channel" t-thumbnail="/website/static/src/img/snippets_thumbs/s_channel.svg"/> + </xpath> +</template> + +</odoo> diff --git a/addons/website_mail_channel/views/website_mail_channel_templates.xml b/addons/website_mail_channel/views/website_mail_channel_templates.xml new file mode 100644 index 00000000..4e247afd --- /dev/null +++ b/addons/website_mail_channel/views/website_mail_channel_templates.xml @@ -0,0 +1,337 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + +<template id="mail_channels" name="Mailing Lists"> + <t t-call="website.layout"> + <div id="wrap" class="oe_structure oe_empty"> + <section class="bg-primary jumbotron mt0 mb0"> + <div class="container"> + <h1>Stay in touch with our Community</h1> + <p>Alone we can do so little, together we can do so much</p> + </div> + </section> + </div> + <div class="container mt32"> + <div t-if="'unsubscribe' in request.params" class="offset-lg-9 col-lg-3 alert alert-info" role="status"> + <h3>Need to unsubscribe? It's right here! <span class="fa fa-2x fa-arrow-down float-right" role="img" aria-label="" title="Read this !"></span></h3> + </div> + <div class="row mt8" t-foreach="groups" t-as="group"> + <div class="col-lg-3"> + <img t-att-src="website.image_url(group, 'image_128')" class="o_image_64_cover float-left" alt="Group"/> + <strong><a t-attf-href="/groups/#{ slug(group) }" t-esc="group.name"/></strong><br /> + <t t-if="group.alias_id and group.alias_id.alias_name and group.alias_id.alias_domain"> + <i class='fa fa-envelope-o' role="img" aria-label="Alias" title="Alias"/> + <a t-attf-href="mailto:#{group.alias_id.alias_name}@#{group.alias_id.alias_domain}"><span t-field="group.alias_id"/></a> + </t> + </div> + <div class="col-lg-4"> + <div t-esc="group.description" class="text-muted"/> + </div> + <div class="col-lg-2"> + <i class='fa fa-fw fa-user' role="img" aria-label="Recipients" title="Recipients"/> <t t-esc="group_data[group.id]['members_count']"/> members<br /> + <i class='fa fa-fw fa-envelope-o' role="img" aria-label="Traffic" title="Traffic"/> <t t-raw="group_data[group.id]['monthly_message_nbr']"/> messages / month + </div> + <div class="col-lg-3"> + <!--<t t-call="website_mail.follow"><t t-set="object" t-value="group"/></t>--> + + <div class="s_channel" + t-att-data-id="group.id" + data-object="mail.channel" + t-att-data-follow="'on' if 'unsubscribe' in request.params else 'off'" + data-snippet="s_channel"> + <div class="input-group js_mg_follow_form"> + <input + type="email" + name="email" + class="js_follow_email form-control" + placeholder="your email..."/> + <div t-if="'unsubscribe' not in request.params" class="input-group-append"> + <button href="#" class="btn btn-primary js_follow_btn">Subscribe</button> + </div> + <div t-if="'unsubscribe' in request.params" class="input-group-append"> + <button href="#" class="btn btn-primary js_follow_btn">Unsubscribe</button> + </div> + </div> + <p class="js_mg_details d-none"> + <span class="js_mg_email d-none"><a href="#" class="js_mg_email"><i class="fa fa-envelope-o"/> send mail</a> - </span> + <a href="#" class="js_mg_link"><i class="fa fa-file-o"/> archives</a> - + <a role="button" href="#" class="js_unfollow_btn"><i class="fa fa-times"/> unsubscribe</a> + </p> + </div> + + + </div> + </div> + </div> + </t> +</template> + +<template id="group_messages" name="Message Threads"> + <t t-call="website.layout"> + <section class="container"> + <div class="mt8"> + <ol class="breadcrumb float-left"> + <li class="breadcrumb-item"><a href="/groups">Mailing Lists</a></li> + <li class="breadcrumb-item"> + <a t-attf-href="/groups/#{slug(group)}?#{mode and 'mode=%s' % mode or ''}#{date_begin and '&date_begin=%s' % date_begin or ''}#{date_end and '&date_end=%s' % date_end or ''}"><t t-esc="group.name"/></a> + </li> + </ol> + </div> + <div class="row"> + <div class="col-lg-12"> + <h1 class="text-center"> + <t t-esc="group.name"/> mailing list archives + </h1><h4 class="text-center text-muted" t-if="group.alias_id and group.alias_id.alias_name and group.alias_id.alias_domain"> + <i class='fa fa-envelope-o' role="img" aria-label="Alias" title="Alias"/> + <a t-attf-href="mailto:#{group.alias_id.alias_name}@#{group.alias_id.alias_domain}"><span t-field="group.alias_id"/></a> + </h4> + </div> + <div class="col-lg-3"> + <h2>Archives</h2> + <ul class="nav nav-pills flex-column" id="group_mode"> + <li class="nav-item"> + <a t-attf-href="/groups/#{ slug(group) }?mode=thread" t-attf-class="nav-link#{mode=='thread' and ' active' or ''}">By thread</a> + </li> + <li class="nav-item"> + <a t-attf-href="/groups/#{ slug(group) }?mode=date" t-attf-class="nav-link#{mode=='date' and not date_begin and ' active' or ''}">By date</a> + <ul class="nav nav-pills flex-column" style="margin-left: 8px;"> + <t t-foreach="archives" t-as="month_archive"> + <li class="nav-item"> + <a t-ignore="True" t-attf-href="/groups/#{ slug(group) }?mode=date&date_begin=#{ month_archive['date_begin'] }&date_end=#{month_archive['date_end']}" + t-attf-class="nav-link#{month_archive['date_begin'] == date_begin and ' active' or ''}"> + <t t-esc="month_archive['date']"/> + <span class="float-right badge badge-pill" t-esc="month_archive['date_count']"/> + </a> + </li> + </t> + </ul> + </li> + </ul> + </div> + <div class="col-lg-9"> + <div> + <t t-call="website.pager"/> + </div> + <t t-call="website_mail_channel.messages_short"> + <t t-set="messages" t-value="messages"/> + <t t-set="msg_more_count" t-value="0"/> + <t t-set="thread_header" t-value="None"/> + </t> + <div> + <t t-call="website.pager"/> + </div> + </div> + </div> + </section> + </t> +</template> + +<template id="group_message"> + <t t-call="website.layout"> + <t t-set="additional_title"><t t-esc="message.description"/></t> + <section class="container"> + <div class="row mt8"> + <ol class="breadcrumb float-left"> + <li class="breadcrumb-item"><a href="/groups">Mailing Lists</a></li> + <li class="breadcrumb-item"> + <a t-attf-href="/groups/#{slug(group)}?#{mode and 'mode=%s' % mode or ''}#{date_begin and '&date_begin=%s' % date_begin or ''}#{date_end and '&date_end=%s' % date_end or ''}"><t t-esc="group.name"/></a> + </li> + <li t-if="message" class="breadcrumb-item active"><t t-esc="message.description"/></li> + </ol> + </div> + <div class="row"> + <h1 class="text-center"> + <t t-esc="group.name"/> mailing list archives + </h1><h4 class="text-center text-muted" t-if="group.alias_id and group.alias_id.alias_name and group.alias_id.alias_domain"> + <i class='fa fa-envelope-o' role="img" aria-label="Alias" title="Alias"/> + <a t-attf-href="mailto:#{group.alias_id.alias_name}@#{group.alias_id.alias_domain}"><span t-field="group.alias_id"/></a> + </h4> + </div> + <div class="row"> + <div class="col-lg-3"> + <h4>Browse archives</h4> + <ul class="nav nav-pills flex-column" id="group_mode"> + <li class="nav-item"> + <a t-attf-href="/groups/#{ slug(group) }?mode=thread" t-attf-class="nav-link#{mode=='thread' and ' active' or ''}">By thread</a> + </li> + <li class="nav-item"> + <a t-attf-href="/groups/#{ slug(group) }?mode=date" t-attf-class="nav-link#{mode=='date' and not date_begin and ' active' or ''}">By date</a> + <ul class="nav nav-pills flex-column" style="margin-left: 8px;"> + <t t-foreach="archives" t-as="month_archive"> + <li class="nav-item"> + <a t-ignore="True" t-attf-href="/groups/#{ slug(group) }?mode=date&date_begin=#{ month_archive['date_begin'] }&date_end=#{month_archive['date_end']}" + t-attf-class="nav-link#{month_archive['date_begin'] == date_begin and ' active' or ''}"> + <t t-esc="month_archive['date']"/> + <span class="float-right badge badge-pill" t-esc="month_archive['date_count']"/> + </a> + </li> + </t> + </ul> + </li> + </ul> + </div> + <div class="col-lg-9"> + <div class="row"> + <h4 class="col-lg-6"> + <t t-if="prev_message"><a t-attf-href='/groups/#{slug(group)}/#{slug(prev_message)}?#{mode and "mode=%s" % mode or ""}'> + <i class="fa fa-arrow-left" role="img" aria-label="Previous message" title="Previous message"/> <t t-esc="prev_message.description"/> + </a></t> + </h4> + <h4 class="col-lg-6"> + <t t-if="next_message"><a class="float-right" t-attf-href='/groups/#{slug(group)}/#{slug(next_message)}?#{mode and "mode=%s" % mode or ""}'> + <t t-esc="next_message.description"/> <i class="fa fa-arrow-right" role="img" aria-label="Next message" title="Next message"/> + </a></t> + </h4> + </div> + <div class="media"> + <img class="rounded mt0 o_image_40_cover" + t-att-src="website.image_url(message, 'author_avatar')" alt="Avatar"/> + <div class="media-body"> + <h4 t-esc="message.description"/> + <small> + by + <t t-if="message.author_id"> + <span t-field="message.author_id" style="display: inline-block;" t-options='{ + "widget": "contact", + "fields": ["name"] + }'/> + </t> + <t t-if="not message.author_id"><t t-esc="message.email_from"/></t> + - <i class="fa fa-calendar" role="img" aria-label="Date" title="Date"/> <span t-field="message.date"/> + </small> + <div t-raw="message.body"/> + + <div> + <p t-if="message.attachment_ids" class="mt8"> + <a href="#" class="o_mg_link_hide"> + <i class="fa fa-chevron-right" role="img" aria-label="Hide attachments" title="Hide attachments"/> <t t-raw="len(message.attachment_ids)"/> attachments + </a> + <a href="#" class="o_mg_link_show"> + <i class="fa fa-chevron-down" role="img" aria-label="Show attachments" title="Show attachments"/> <t t-raw="len(message.attachment_ids)"/> attachments + </a> + </p> + <div class="o_mg_link_content"> + <div class="col-lg-2 col-md-3 text-center" t-foreach='message.attachment_ids' t-as='attachment'> + <a t-attf-href="/web/content/#{attachment.id}?download=true" target="_blank"> + <div class='oe_attachment_embedded o_image' t-att-title="attachment.name" t-att-data-mimetype="attachment.mimetype" t-attf-data-src="/web/image/#{attachment.id}/100x80"/> + <div class='oe_attachment_name'><t t-raw='attachment.name' /></div> + </a> + </div> + </div> + </div> + </div> + </div> + <div t-if="message.child_ids" class="o_mg_replies"> + <h4 class="o_page_header">Follow-Ups</h4> + <t t-call="website_mail_channel.messages_short"> + <t t-set="messages" t-value="message.child_ids[:replies_per_page]"/> + <t t-set="msg_more_count" t-value="len(message.child_ids) - replies_per_page"/> + <t t-set="thread_header" t-value="message"/> + </t> + </div> + <div t-if="message.parent_id"> + <h4 class="o_page_header">Reference</h4> + <t t-call="website_mail_channel.messages_short"> + <t t-set="messages" t-value="[message.parent_id]"/> + </t> + </div> + </div> + </div> + </section> + </t> +</template> + +<template id="messages_short"> + <div> + <ul class="list-unstyled"> + <li t-foreach="messages" t-as="thread" class="media mt-3"> + <img class="rounded mt-0 o_image_40_cover" alt="Avatar" + t-att-src="website.image_url(thread, 'author_avatar')"/> + <div class="media-body"> + <h4> + <a t-attf-href="/groups/#{slug(group)}/#{slug(thread)}?mode=#{mode}&date_begin=#{date_begin}&date_end=#{date_end}" t-esc="thread.description"/> + </h4> + <small> + by + <t t-if="thread.author_id"> + <span t-field="thread.author_id" style="display: inline-block;" t-options='{ + "widget": "contact", + "fields": ["name"] + }'/> + </t> + <t t-if="not thread.author_id"><t t-esc="thread.email_from"/></t> + - <i class="fa fa-calendar" role="img" aria-label="Date" title="Date"/> <span t-field="thread.date"/> + - <i class="fa fa-paperclip" role="img" aria-label="Attachments" title="Attachments"/> <t t-esc="len(thread.attachment_ids)"/> + </small> + <p t-if="thread.child_ids" class="mt8"> + <a href="#" class="o_mg_link_hide"> + <i class="fa fa-chevron-right" role="img" aria-label="Hide replies" title="Hide replies"/> <t t-raw="len(thread.child_ids)"/> replies + </a> + <a href="#" class="o_mg_link_show"> + <i class="fa fa-chevron-down" role="img" aria-label="Show replies" title="Show replies"/> <t t-raw="len(thread.child_ids)"/> replies + </a> + </p> + <div class="o_mg_link_content o_mg_replies"> + <t t-call="website_mail_channel.messages_short"> + <t t-set="messages" t-value="thread.child_ids[:replies_per_page]"/> + <t t-set="msg_more_count" t-value="len(thread.child_ids) - replies_per_page"/> + <t t-set="thread_header" t-value="thread"/> + </t> + </div> + </div> + </li> + </ul> + <p t-if="messages and (msg_more_count or 0) > 0 and thread_header"> + <button class="fa btn-link o_mg_read_more" + t-attf-data-href="/groups/#{slug(group)}/#{slug(thread_header)}/get_replies" + t-attf-data-msg-id="#{messages[-1].id}"> + show <t t-esc="msg_more_count"/> more replies + </button> + </p> + </div> +</template> + + +<template id="confirmation_subscription" name="Mailing List Confirmation"> + <t t-call="website.layout"> + <div id="wrap" class="oe_structure oe_empty"> + <div class="container"> + <p> + You have been correctly + <t t-if="subscribing">subscribed</t> + <t t-if="not subscribing">unsubscribed</t> + to the mailing list. + </p> + </div> + </div> + </t> +</template> + +<template id="invalid_token_subscription" name="Invalid Token Submitted"> + <t t-call="website.layout"> + <div id="wrap" class="oe_structure oe_empty"> + <div class="container"> + <p> + Invalid or expired confirmation link. + </p> + </div> + </div> + </t> +</template> + +<template id="not_subscribed" name="Email address was not subscribed"> + <t t-call="website.layout"> + <div id="wrap" class="oe_structure oe_empty"> + <div class="container"> + <p> + The address <t t-esc="partner_id.email"/> is already + unsubscribed or was never subscribed to the mailing + list, you may want to check that the address was + correct. + </p> + </div> + </div> + </t> +</template> + +</odoo> |
