From e9e72fe5f149fec25108835fb71fac22aa579f80 Mon Sep 17 00:00:00 2001 From: "Adrien Peiffer (ACSONE)" Date: Wed, 18 Jan 2017 10:37:54 +0100 Subject: [PATCH 01/86] [IMP] Move domain in python in order to allow inheritance --- .../wizard/mail_compose_message.py | 7 ++++++- .../wizard/mail_compose_message_view.xml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mail_attach_existing_attachment/wizard/mail_compose_message.py b/mail_attach_existing_attachment/wizard/mail_compose_message.py index a86e4a80..91d6004a 100644 --- a/mail_attach_existing_attachment/wizard/mail_compose_message.py +++ b/mail_attach_existing_attachment/wizard/mail_compose_message.py @@ -38,11 +38,16 @@ class MailComposeMessage(models.TransientModel): res['can_attach_attachment'] = True # pragma: no cover return res + @api.model + def _get_object_attachment_domain(self): + return "[('res_model', '=', model), ('res_id', '=', res_id)]" + can_attach_attachment = fields.Boolean(string='Can Attach Attachment') object_attachment_ids = fields.Many2many( comodel_name='ir.attachment', relation='mail_compose_message_ir_attachments_object_rel', - column1='wizard_id', column2='attachment_id', string='Attachments') + column1='wizard_id', column2='attachment_id', string='Attachments', + domain=lambda self: self._get_object_attachment_domain()) @api.multi def get_mail_values(self, res_ids): diff --git a/mail_attach_existing_attachment/wizard/mail_compose_message_view.xml b/mail_attach_existing_attachment/wizard/mail_compose_message_view.xml index d79a0342..b347dcd4 100644 --- a/mail_attach_existing_attachment/wizard/mail_compose_message_view.xml +++ b/mail_attach_existing_attachment/wizard/mail_compose_message_view.xml @@ -9,7 +9,7 @@

- +
From 68afa47525030a13a1fc5340c563df1aca10e110 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Mon, 16 Apr 2018 13:37:09 +0200 Subject: [PATCH 02/86] [FIX] mass_mailing_event: Integration tests When running tests and `mass_mailing_list_dynamic` was installed, they failed. --- mass_mailing_event/__manifest__.py | 4 ++-- mass_mailing_event/tests/test_mass_mailing_event.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/mass_mailing_event/__manifest__.py b/mass_mailing_event/__manifest__.py index 17f1fd52..218b1465 100644 --- a/mass_mailing_event/__manifest__.py +++ b/mass_mailing_event/__manifest__.py @@ -6,9 +6,9 @@ { 'name': 'Mass mailing event', 'summary': 'Link mass mailing with event for excluding recipients', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'category': 'Marketing', - 'website': 'https://www.tecnativa.com', + 'website': 'https://github.com/OCA/social', 'author': 'Tecnativa, ' 'Odoo Community Association (OCA)', 'license': 'AGPL-3', diff --git a/mass_mailing_event/tests/test_mass_mailing_event.py b/mass_mailing_event/tests/test_mass_mailing_event.py index 1c0f5dc4..0ad6dc37 100644 --- a/mass_mailing_event/tests/test_mass_mailing_event.py +++ b/mass_mailing_event/tests/test_mass_mailing_event.py @@ -3,10 +3,12 @@ # Copyright 2017 David Vidal # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo.tests import common +from odoo.tests.common import at_install, post_install, SavepointCase -class TestMassMailingEvent(common.SavepointCase): +@at_install(True) +@post_install(True) +class TestMassMailingEvent(SavepointCase): @classmethod def setUpClass(cls): From fa5ef8aa6f8a19e2935f6f98bca076e96968e53b Mon Sep 17 00:00:00 2001 From: Emanuel Cino Date: Thu, 19 Apr 2018 13:24:01 +0200 Subject: [PATCH 03/86] Rewrite dependencies of sendgrid module fixes #261 --- .travis.yml | 1 - mail_sendgrid/__manifest__.py | 6 +++--- mail_sendgrid/controllers/json_request.py | 10 ++++++++-- requirements.txt | 4 +++- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4ace9c1..c8f9fedb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,6 @@ virtualenv: system_site_packages: true install: - - pip install sendgrid - git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} - travis_install_nightly diff --git a/mail_sendgrid/__manifest__.py b/mail_sendgrid/__manifest__.py index f916e21b..f2c07e09 100644 --- a/mail_sendgrid/__manifest__.py +++ b/mail_sendgrid/__manifest__.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# Copyright 2015-2017 Compassion CH (http://www.compassion.ch) +# Copyright 2015-2018 Compassion CH (http://www.compassion.ch) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'SendGrid', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'category': 'Social Network', 'author': 'Compassion CH, Odoo Community Association (OCA)', 'license': 'AGPL-3', @@ -20,6 +20,6 @@ 'installable': True, 'auto_install': False, 'external_dependencies': { - 'python': ['sendgrid'], + 'python': ['sendgrid', 'simplejson'], }, } diff --git a/mail_sendgrid/controllers/json_request.py b/mail_sendgrid/controllers/json_request.py index 189159ba..e2cd25bc 100644 --- a/mail_sendgrid/controllers/json_request.py +++ b/mail_sendgrid/controllers/json_request.py @@ -1,12 +1,18 @@ # -*- coding: utf-8 -*- # Copyright 2016-2017 Compassion CH (http://www.compassion.ch) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -import simplejson - +import logging from odoo.http import JsonRequest, Root, Response # Monkeypatch type of request rooter to use RESTJsonRequest old_get_request = Root.get_request +_logger = logging.getLogger(__name__) + +try: + import simplejson +except ImportError: + _logger.error("Please install simplejson tu use mail_sendgrid module") + _logger.debug("ImportError details:", exc_info=True) def get_request(self, httprequest): diff --git a/requirements.txt b/requirements.txt index 8c94d1e2..ba72244b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,3 @@ -premailer \ No newline at end of file +premailer +simplejson +sendgrid \ No newline at end of file From fc4cccbfe44da7ae0f862351006471851d80eb66 Mon Sep 17 00:00:00 2001 From: Thierry Ducrest Date: Fri, 27 Apr 2018 00:07:57 +0200 Subject: [PATCH 04/86] [10.0] Improving the mail tracking value (#170) Improve the tracking of changed values on database fields ("mail.tracking.value" functionality) by adding many2many and one2many support. As well as a more user friendly view to consult changes recorded. --- mail_improved_tracking_value/README.rst | 77 +++++++++ mail_improved_tracking_value/__init__.py | 5 + mail_improved_tracking_value/__manifest__.py | 23 +++ .../models/__init__.py | 5 + .../models/mail_tracking_value.py | 78 +++++++++ .../tests/__init__.py | 1 + .../tests/test_improved_tracking_value.py | 154 ++++++++++++++++++ .../views/mail_tracking_value.xml | 74 +++++++++ 8 files changed, 417 insertions(+) create mode 100644 mail_improved_tracking_value/README.rst create mode 100644 mail_improved_tracking_value/__init__.py create mode 100644 mail_improved_tracking_value/__manifest__.py create mode 100644 mail_improved_tracking_value/models/__init__.py create mode 100644 mail_improved_tracking_value/models/mail_tracking_value.py create mode 100644 mail_improved_tracking_value/tests/__init__.py create mode 100644 mail_improved_tracking_value/tests/test_improved_tracking_value.py create mode 100644 mail_improved_tracking_value/views/mail_tracking_value.xml diff --git a/mail_improved_tracking_value/README.rst b/mail_improved_tracking_value/README.rst new file mode 100644 index 00000000..1d07764b --- /dev/null +++ b/mail_improved_tracking_value/README.rst @@ -0,0 +1,77 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============================== +Tracking value change improved +============================== + +This module extends the mail_tracking_value functionality that records +value changes on predefined fields. +It adds support for many2many and one2many fields, which are not handled +well by default. +It also implements a new view (little bit more user friendly than the +existing one) to watch for changes + +Installation +============ + +To install this module, you need to: + +#. Just install the module + +Configuration +============= + +To configure this module, you need to: + +# No configuration is necessary + +Usage +===== + +To access the new view displaying value changes : + + Settings -> Technical -> Improved tracking values + + +Known issues / Roadmap +====================== + + * Improve rendering of values depending of type using qweb widgets + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Thierry Ducrest + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/mail_improved_tracking_value/__init__.py b/mail_improved_tracking_value/__init__.py new file mode 100644 index 00000000..955b6c58 --- /dev/null +++ b/mail_improved_tracking_value/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/mail_improved_tracking_value/__manifest__.py b/mail_improved_tracking_value/__manifest__.py new file mode 100644 index 00000000..879db482 --- /dev/null +++ b/mail_improved_tracking_value/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': 'Improved tracking value change', + 'version': '10.0.1.0.0', + 'summary': 'Improves tracking changed values for certain type of fields.' + 'Adds a user-friendly view to consult them.', + 'author': 'Camptocamp, Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'category': 'Tools', + 'website': 'http://www.camptocamp.com', + 'depends': [ + 'base', + 'mail' + ], + 'data': [ + 'views/mail_tracking_value.xml' + ], + 'installable': True, + 'auto_install': False, +} diff --git a/mail_improved_tracking_value/models/__init__.py b/mail_improved_tracking_value/models/__init__.py new file mode 100644 index 00000000..fa64a900 --- /dev/null +++ b/mail_improved_tracking_value/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import mail_tracking_value diff --git a/mail_improved_tracking_value/models/mail_tracking_value.py b/mail_improved_tracking_value/models/mail_tracking_value.py new file mode 100644 index 00000000..3cdced2d --- /dev/null +++ b/mail_improved_tracking_value/models/mail_tracking_value.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import json + +from odoo import api, fields, models + + +class MailTrackingValue(models.Model): + + _inherit = "mail.tracking.value" + + new_value_formatted = fields.Char(compute='_compute_formatted_value', + string='New value') + old_value_formatted = fields.Char(compute='_compute_formatted_value', + string='Old value') + record_name = fields.Char(related='mail_message_id.record_name') + model = fields.Char(related='mail_message_id.model', store='True', + string='Model') + + @api.depends('new_value_char', 'new_value_integer', 'new_value_float', + 'new_value_text', 'new_value_datetime', 'new_value_monetary', + 'old_value_char', 'old_value_integer', 'old_value_float', + 'old_value_text', 'old_value_datetime', 'old_value_monetary') + def _compute_formatted_value(self): + """ Sets the value formatted field used in the view """ + # Could be improved, by styling in the view depending on type of field + for record in self: + if record.field_type in ('many2many', 'one2many', 'char'): + record.new_value_formatted = record.new_value_char + record.old_value_formatted = record.old_value_char + elif record.field_type == 'integer': + record.new_value_formatted = str(record.new_value_integer) + record.old_value_formatted = str(record.old_value_integer) + elif record.field_type == 'float': + record.new_value_formatted = str(record.new_value_float) + record.old_value_formatted = str(record.old_value_float) + elif record.field_type == 'monetary': + record.new_value_formatted = str(record.new_value_monetary) + record.old_value_formatted = str(record.old_value_monetary) + elif record.field_type == 'datetime': + record.new_value_formatted = str(record.new_value_datetime) + record.old_value_formatted = str(record.old_value_datetime) + elif record.field_type == 'text': + record.new_value_formatted = record.new_value_text + record.old_value_formatted = record.old_value_text + + @api.model + def create_tracking_values(self, old_value, new_value, col_name, col_info): + """ Add tacking capabilities for many2many and one2many fields """ + if col_info['type'] in ('many2many', 'one2many'): + + def get_values(source, prefix): + if source: + names = ', '.join(source.mapped('display_name')) + json_ids = json.dumps(source.ids) + else: + names = '' + json_ids = json.dumps([]) + return { + '{}_value_char'.format(prefix): names, + '{}_value_text'.format(prefix): json_ids, + } + + values = { + 'field': col_name, + 'field_desc': col_info['string'], + 'field_type': col_info['type'], + } + values.update(get_values(old_value, 'old')) + values.update(get_values(new_value, 'new')) + return values + else: + return super(MailTrackingValue, self).create_tracking_values( + old_value, new_value, + col_name, col_info + ) diff --git a/mail_improved_tracking_value/tests/__init__.py b/mail_improved_tracking_value/tests/__init__.py new file mode 100644 index 00000000..89f3720d --- /dev/null +++ b/mail_improved_tracking_value/tests/__init__.py @@ -0,0 +1 @@ +from . import test_improved_tracking_value diff --git a/mail_improved_tracking_value/tests/test_improved_tracking_value.py b/mail_improved_tracking_value/tests/test_improved_tracking_value.py new file mode 100644 index 00000000..45c07b2d --- /dev/null +++ b/mail_improved_tracking_value/tests/test_improved_tracking_value.py @@ -0,0 +1,154 @@ +# -*- coding: utf-8 -*- +# Copyright 2018 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) + +import json +from odoo.tests.common import TransactionCase + + +class TestImproveTrackingValue(TransactionCase): + + def setUp(self): + super(TestImproveTrackingValue, self).setUp() + self.model = self.env['mail.tracking.value'] + self.msg = self.env['mail.message'].create({ + 'message_type': 'email' + }) + self.mr = self.env.ref('base.res_partner_title_mister') + self.dr = self.env.ref('base.res_partner_title_doctor') + self.mm = self.env.ref('base.res_partner_title_madam') + self.pf = self.env.ref('base.res_partner_title_prof') + + def test_change_one2many(self): + """Test tracking one2many changes""" + tracking = self.model.create_tracking_values( + self.mr, self.dr, 'testing_col', + {'string': 'TestingField', 'type': 'one2many'}) + self.assertEqual(tracking['old_value_char'], self.mr.display_name) + self.assertEqual(tracking['new_value_char'], self.dr.display_name) + self.assertEqual(tracking['old_value_text'], json.dumps([self.mr.id])) + self.assertEqual(tracking['new_value_text'], json.dumps([self.dr.id])) + + def test_change_one2many_empty(self): + """Test tracking one2many changes emtpy""" + tracking = self.model.create_tracking_values( + self.mr, None, 'testing_col', + {'string': 'TestingField', 'type': 'one2many'}) + self.assertEqual(tracking['old_value_char'], self.mr.display_name) + self.assertEqual(tracking['new_value_char'], '') + self.assertEqual(tracking['old_value_text'], json.dumps([self.mr.id])) + self.assertEqual(tracking['new_value_text'], json.dumps([])) + + def test_change_many2many(self): + """Test tracking many2many changes""" + oldvalue = self.env['res.partner.title'].browse([self.mr.id, + self.dr.id]) + newvalue = self.env['res.partner.title'].browse([self.mm.id, + self.pf.id]) + tracking = self.model.create_tracking_values( + oldvalue, newvalue, 'testing_col', + {'string': 'TestingField', 'type': 'many2many'}) + self.assertEqual(tracking['old_value_char'], + self.mr.display_name + ', ' + self.dr.display_name) + self.assertEqual(tracking['new_value_char'], + self.mm.display_name + ', ' + self.pf.display_name) + self.assertEqual(tracking['old_value_text'], + json.dumps(oldvalue.ids)) + self.assertEqual(tracking['new_value_text'], + json.dumps(newvalue.ids)) + + def test_char_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'char', + 'old_value_char': 'weakness', + 'new_value_char': 'strength', + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, 'weakness') + self.assertEqual(r.new_value_formatted, 'strength') + + def test_many2many_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'many2many', + 'old_value_char': '123', + 'new_value_char': '456', + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, '123') + self.assertEqual(r.new_value_formatted, '456') + + def test_one2many_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'one2many', + 'old_value_char': '123', + 'new_value_char': '456', + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, '123') + self.assertEqual(r.new_value_formatted, '456') + + def test_integer_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'integer', + 'old_value_integer': 1, + 'new_value_integer': 3, + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, str(1)) + self.assertEqual(r.new_value_formatted, str(3)) + + def test_float_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'float', + 'old_value_float': 1.1, + 'new_value_float': 3.14159, + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, str(1.1)) + self.assertEqual(r.new_value_formatted, str(3.14159)) + + def test_monetary_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'monetary', + 'old_value_monetary': 3.45, + 'new_value_monetary': 5.45, + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, str(3.45)) + self.assertEqual(r.new_value_formatted, str(5.45)) + + def test_datetime_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'datetime', + 'old_value_datetime': '2018-01-01', + 'new_value_datetime': '2018-01-04', + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, '2018-01-01 00:00:00') + self.assertEqual(r.new_value_formatted, '2018-01-04 00:00:00') + + def test_text_tracking_value(self): + r = self.model.create({ + 'mail_message_id': self.msg.id, + 'field_type': 'text', + 'old_value_text': 'previous', + 'new_value_text': 'next', + 'field': 'test', + 'field_desc': 'desc', + }) + self.assertEqual(r.old_value_formatted, 'previous') + self.assertEqual(r.new_value_formatted, 'next') diff --git a/mail_improved_tracking_value/views/mail_tracking_value.xml b/mail_improved_tracking_value/views/mail_tracking_value.xml new file mode 100644 index 00000000..43e74f35 --- /dev/null +++ b/mail_improved_tracking_value/views/mail_tracking_value.xml @@ -0,0 +1,74 @@ + + + + + Tracking change list" + mail.tracking.value + + + + + + + + + + + + + + Tracking change form + mail.tracking.value + + +
+ + + + + + + + + + + + +
+
+
+ + + Tracking change list filter + mail.tracking.value + + + + + + + + + + + + + + View last tracked changes + mail.tracking.value + tree,form + + + + + +
From e680a2c7100a6e65cde35be03533d3e345190ab1 Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Fri, 27 Apr 2018 02:56:07 +0200 Subject: [PATCH 05/86] [UPD] addons table in README.md [ci skip] --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3b0bbe45..75b3ce28 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ addon | version | summary [mail_footer_notified_partner](mail_footer_notified_partner/) | 10.0.1.0.1 | This module adds the list of notified partners in the footer of notification e-mails sent by Odoo. [mail_force_queue](mail_force_queue/) | 10.0.0.2.0 | Force outgoing emails to be queued [mail_full_expand](mail_full_expand/) | 10.0.1.0.0 | Expand mail in a big window +[mail_improved_tracking_value](mail_improved_tracking_value/) | 10.0.1.0.0 | Improves tracking changed values for certain type of fields.Adds a user-friendly view to consult them. [mail_inline_css](mail_inline_css/) | 10.0.1.0.0 | Convert style tags in inline style in your mails [mail_notify_bounce](mail_notify_bounce/) | 10.0.1.0.2 | Notify bounce emails to preconfigured addresses [mail_optional_autofollow](mail_optional_autofollow/) | 10.0.1.0.0 | Choose if you want to automatically add new recipients as followers on mail.compose.message From 3ea5e17f2d79e2e41a6cd2adb4b9d6d34483976a Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Fri, 27 Apr 2018 05:22:19 +0200 Subject: [PATCH 06/86] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/mail_improved_tracking_value/odoo/__init__.py | 1 + setup/mail_improved_tracking_value/odoo/addons/__init__.py | 1 + .../odoo/addons/mail_improved_tracking_value | 1 + setup/mail_improved_tracking_value/setup.py | 6 ++++++ 6 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 setup/mail_improved_tracking_value/odoo/__init__.py create mode 100644 setup/mail_improved_tracking_value/odoo/addons/__init__.py create mode 120000 setup/mail_improved_tracking_value/odoo/addons/mail_improved_tracking_value create mode 100644 setup/mail_improved_tracking_value/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index bf6139d3..33aa6e7c 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -10.0.20180419.0 \ No newline at end of file +10.0.20180427.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 68b9b68f..b47619ac 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -17,6 +17,7 @@ setuptools.setup( 'odoo10-addon-mail_footer_notified_partner', 'odoo10-addon-mail_force_queue', 'odoo10-addon-mail_full_expand', + 'odoo10-addon-mail_improved_tracking_value', 'odoo10-addon-mail_inline_css', 'odoo10-addon-mail_notify_bounce', 'odoo10-addon-mail_optional_autofollow', diff --git a/setup/mail_improved_tracking_value/odoo/__init__.py b/setup/mail_improved_tracking_value/odoo/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/mail_improved_tracking_value/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/mail_improved_tracking_value/odoo/addons/__init__.py b/setup/mail_improved_tracking_value/odoo/addons/__init__.py new file mode 100644 index 00000000..de40ea7c --- /dev/null +++ b/setup/mail_improved_tracking_value/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/mail_improved_tracking_value/odoo/addons/mail_improved_tracking_value b/setup/mail_improved_tracking_value/odoo/addons/mail_improved_tracking_value new file mode 120000 index 00000000..c2c25e49 --- /dev/null +++ b/setup/mail_improved_tracking_value/odoo/addons/mail_improved_tracking_value @@ -0,0 +1 @@ +../../../../mail_improved_tracking_value \ No newline at end of file diff --git a/setup/mail_improved_tracking_value/setup.py b/setup/mail_improved_tracking_value/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/mail_improved_tracking_value/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From f3608284e5855857de8e0fdbc8e3995071e013b2 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Thu, 10 May 2018 11:17:04 +0100 Subject: [PATCH 07/86] [IMP] mass_mailing_custom_unsubscribe: GDPR compliance (#267) * [IMP] mass_mailing_custom_unsubscribe: GDPR compliance - Record resubscriptions too. - Record action metadata. - Make ESLint happy. - Quick color-based action distinction in tree view. - Add useful quick groupings. - Display (un)subscription metadata. - Pivot & graph views. --- mass_mailing_custom_unsubscribe/README.rst | 5 +- .../__manifest__.py | 4 +- .../controllers/main.py | 21 +++++-- .../data/mail_unsubscription_reason.xml | 2 - mass_mailing_custom_unsubscribe/exceptions.py | 4 ++ .../models/mail_mass_mailing.py | 18 ++++-- .../models/mail_unsubscription.py | 57 +++++++++++++++++-- .../static/src/js/require_details.js | 7 ++- .../static/src/js/unsubscribe.js | 32 +++++++---- .../tests/test_unsubscription.py | 14 ++++- .../views/mail_unsubscription_view.xml | 41 ++++++++++++- 11 files changed, 168 insertions(+), 37 deletions(-) diff --git a/mass_mailing_custom_unsubscribe/README.rst b/mass_mailing_custom_unsubscribe/README.rst index 14efcbcd..568d6530 100644 --- a/mass_mailing_custom_unsubscribe/README.rst +++ b/mass_mailing_custom_unsubscribe/README.rst @@ -10,7 +10,10 @@ This addon extends the unsubscription form to let you: - Choose which mailing lists are not cross-unsubscriptable when unsubscribing from a different one. -- Know why and when a contact has been unsubscribed from a mass mailing. +- Know why and when a contact has been subscribed or unsubscribed from a + mass mailing. +- Provide proof on why you are sending mass mailings to a given contact, as + required by the GDPR in Europe. Configuration ============= diff --git a/mass_mailing_custom_unsubscribe/__manifest__.py b/mass_mailing_custom_unsubscribe/__manifest__.py index c533f2c1..d8bbe90f 100644 --- a/mass_mailing_custom_unsubscribe/__manifest__.py +++ b/mass_mailing_custom_unsubscribe/__manifest__.py @@ -3,9 +3,9 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': "Customizable unsubscription process on mass mailing emails", - "summary": "Know unsubscription reasons, track them", + "summary": "Know and track (un)subscription reasons, GDPR compliant", 'category': 'Marketing', - 'version': '10.0.1.0.0', + 'version': '10.0.2.0.0', 'depends': [ 'website_mass_mailing', ], diff --git a/mass_mailing_custom_unsubscribe/controllers/main.py b/mass_mailing_custom_unsubscribe/controllers/main.py index 403efeb9..3b215722 100644 --- a/mass_mailing_custom_unsubscribe/controllers/main.py +++ b/mass_mailing_custom_unsubscribe/controllers/main.py @@ -45,6 +45,8 @@ class CustomUnsubscribe(MassMailController): _logger.debug( "Called `mailing()` with: %r", (mailing_id, email, res_id, token, post)) + if res_id: + res_id = int(res_id) mailing = request.env["mail.mass_mailing"].sudo().browse(mailing_id) mailing._unsubscribe_token(res_id, token) # Mass mailing list contacts are a special case because they have a @@ -90,12 +92,21 @@ class CustomUnsubscribe(MassMailController): token, reason_id=None, details=None): """Store unsubscription reasons when unsubscribing from RPC.""" # Update request context and reset environment + environ = request.httprequest.headers.environ + extra_context = { + "default_metadata": "\n".join( + "%s: %s" % (val, environ.get(val)) for val in ( + "REMOTE_ADDR", + "HTTP_USER_AGENT", + "HTTP_ACCEPT_LANGUAGE", + ) + ), + } if reason_id: - request.context = dict( - request.context, - default_reason_id=int(reason_id), - default_details=details or False, - ) + extra_context["default_reason_id"] = int(reason_id) + if details: + extra_context["default_details"] = details + request.context = dict(request.context, **extra_context) # FIXME Remove token check in version where this is merged: # https://github.com/odoo/odoo/pull/14385 mailing = request.env['mail.mass_mailing'].sudo().browse(mailing_id) diff --git a/mass_mailing_custom_unsubscribe/data/mail_unsubscription_reason.xml b/mass_mailing_custom_unsubscribe/data/mail_unsubscription_reason.xml index 4335f9b7..24a6eda3 100644 --- a/mass_mailing_custom_unsubscribe/data/mail_unsubscription_reason.xml +++ b/mass_mailing_custom_unsubscribe/data/mail_unsubscription_reason.xml @@ -2,7 +2,6 @@ - - diff --git a/mass_mailing_custom_unsubscribe/exceptions.py b/mass_mailing_custom_unsubscribe/exceptions.py index 195b6198..bc9bbcc4 100644 --- a/mass_mailing_custom_unsubscribe/exceptions.py +++ b/mass_mailing_custom_unsubscribe/exceptions.py @@ -7,3 +7,7 @@ from openerp import exceptions class DetailsRequiredError(exceptions.ValidationError): pass + + +class ReasonRequiredError(exceptions.ValidationError): + pass diff --git a/mass_mailing_custom_unsubscribe/models/mail_mass_mailing.py b/mass_mailing_custom_unsubscribe/models/mail_mass_mailing.py index 62fcf04d..2eec3d4a 100644 --- a/mass_mailing_custom_unsubscribe/models/mail_mass_mailing.py +++ b/mass_mailing_custom_unsubscribe/models/mail_mass_mailing.py @@ -40,14 +40,24 @@ class MailMassMailing(models.Model): def update_opt_out(self, email, res_ids, value): """Save unsubscription reason when opting out from mailing.""" self.ensure_one() - if value and self.env.context.get("default_reason_id"): - for res_id in res_ids: + action = "unsubscription" if value else "subscription" + records = self.env[self.mailing_model].browse(res_ids) + previous = self.env["mail.unsubscription"].search(limit=1, args=[ + ("mass_mailing_id", "=", self.id), + ("email", "=", email), + ("action", "=", action), + ]) + for one in records: + # Store action only when something changed, or there was no + # previous subscription record + if one.opt_out != value or (action == "subscription" and + not previous): # reason_id and details are expected from the context self.env["mail.unsubscription"].create({ "email": email, "mass_mailing_id": self.id, - "unsubscriber_id": "%s,%d" % ( - self.mailing_model, int(res_id)), + "unsubscriber_id": "%s,%d" % (one._name, one.id), + "action": action, }) return super(MailMassMailing, self).update_opt_out( email, res_ids, value) diff --git a/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py b/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py index 83999bcb..148ae9da 100644 --- a/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py +++ b/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py @@ -2,7 +2,7 @@ # Copyright 2016 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import _, api, fields, models +from odoo import _, api, fields, models from .. import exceptions @@ -10,12 +10,22 @@ class MailUnsubscription(models.Model): _name = "mail.unsubscription" _inherit = "mail.thread" _rec_name = "date" + _order = "date DESC" date = fields.Datetime( default=lambda self: self._default_date(), required=True) email = fields.Char( required=True) + action = fields.Selection( + selection=[ + ("subscription", "Subscription"), + ("unsubscription", "Unsubscription"), + ], + required=True, + default="unsubscription", + help="What did the (un)subscriber choose to do.", + ) mass_mailing_id = fields.Many2one( "mail.mass_mailing", "Mass mailing", @@ -23,19 +33,29 @@ class MailUnsubscription(models.Model): help="Mass mailing from which he was unsubscribed.") unsubscriber_id = fields.Reference( lambda self: self._selection_unsubscriber_id(), - "Unsubscriber", - required=True, - help="Who was unsubscribed.") + "(Un)subscriber", + help="Who was subscribed or unsubscribed.") + mailing_list_id = fields.Many2one( + "mail.mass_mailing.list", + "Mailing list", + ondelete="set null", + compute="_compute_mailing_list_id", + store=True, + help="(Un)subscribed mass mailing list, if any.", + ) reason_id = fields.Many2one( "mail.unsubscription.reason", "Reason", ondelete="restrict", - required=True, help="Why the unsubscription was made.") details = fields.Char( help="More details on why the unsubscription was made.") details_required = fields.Boolean( related="reason_id.details_required") + metadata = fields.Text( + readonly=True, + help="HTTP request metadata used when creating this record.", + ) @api.model def _default_date(self): @@ -46,6 +66,15 @@ class MailUnsubscription(models.Model): """Models that can be linked to a ``mail.mass_mailing``.""" return self.env["mail.mass_mailing"]._get_mailing_model() + @api.multi + @api.constrains("action", "reason_id") + def _check_reason_needed(self): + """Ensure reason is given for unsubscriptions.""" + for one in self: + if one.action == "unsubscription" and not one.reason_id: + raise exceptions.ReasonRequiredError( + _("Please indicate why are you unsubscribing.")) + @api.multi @api.constrains("details", "reason_id") def _check_details_needed(self): @@ -55,6 +84,24 @@ class MailUnsubscription(models.Model): raise exceptions.DetailsRequiredError( _("Please provide details on why you are unsubscribing.")) + @api.multi + @api.depends("unsubscriber_id") + def _compute_mailing_list_id(self): + """Get the mass mailing list, if it is possible.""" + for one in self: + try: + one.mailing_list_id = one.unsubscriber_id.list_id + except AttributeError: + # Possibly model != mail.mass_mailing.contact; no problem + pass + + @api.model + def create(self, vals): + # No reasons for subscriptions + if vals.get("action") == "subscription": + vals = dict(vals, reason_id=False, details=False) + return super(MailUnsubscription, self).create(vals) + class MailUnsubscriptionReason(models.Model): _name = "mail.unsubscription.reason" diff --git a/mass_mailing_custom_unsubscribe/static/src/js/require_details.js b/mass_mailing_custom_unsubscribe/static/src/js/require_details.js index 6df78b75..6c778c68 100644 --- a/mass_mailing_custom_unsubscribe/static/src/js/require_details.js +++ b/mass_mailing_custom_unsubscribe/static/src/js/require_details.js @@ -5,7 +5,7 @@ odoo.define("mass_mailing_custom_unsubscribe.require_details", "use strict"; var animation = require("web_editor.snippets.animation"); - return animation.registry.mass_mailing_custom_unsubscribe_require_details = + animation.registry.mass_mailing_custom_unsubscribe_require_details = animation.Class.extend({ selector: ".js_unsubscription_reason", @@ -19,7 +19,10 @@ odoo.define("mass_mailing_custom_unsubscribe.require_details", toggle: function (event) { this.$details.prop( "required", - $(event.target).is("[data-details-required]")); + $(event.target).is("[data-details-required]") && + $(event.target).is(":visible")); }, }); + + return animation.registry.mass_mailing_custom_unsubscribe_require_details; }); diff --git a/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js b/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js index 49f92b6d..12ec3a05 100644 --- a/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js +++ b/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js @@ -7,15 +7,15 @@ * that when it gets merged, and remove most of this file. */ odoo.define("mass_mailing_custom_unsubscribe.unsubscribe", function (require) { "use strict"; - var core = require("web.core"), - ajax = require("web.ajax"), - animation = require("web_editor.snippets.animation"), - _t = core._t; + var core = require("web.core"); + var ajax = require("web.ajax"); + var animation = require("web_editor.snippets.animation"); + var _t = core._t; - return animation.registry.mass_mailing_unsubscribe = + animation.registry.mass_mailing_unsubscribe = animation.Class.extend({ selector: "#unsubscribe_form", - start: function (editable_mode) { + start: function () { this.controller = '/mail/mailing/unsubscribe'; this.$alert = this.$(".alert"); this.$email = this.$("input[name='email']"); @@ -32,7 +32,7 @@ odoo.define("mass_mailing_custom_unsubscribe.unsubscribe", function (require) { // Helper to get list ids, to use in this.$contacts.map() int_val: function (index, element) { - return parseInt($(element).val()); + return parseInt($(element).val(), 10); }, // Get a filtered array of integer IDs of matching lists @@ -50,11 +50,17 @@ odoo.define("mass_mailing_custom_unsubscribe.unsubscribe", function (require) { }); // Hide reasons form if you are only subscribing this.$reasons.toggleClass("hidden", !$disabled.length); + var $radios = this.$reasons.find(":radio"); if (this.$reasons.is(":hidden")) { // Uncheck chosen reason - this.$reasons.find(":radio").prop("checked", false) + $radios.prop("checked", false) + // Unrequire specifying a reason + .prop("required", false) // Remove possible constraints for details .trigger("change"); + } else { + // Require specifying a reason + $radios.prop("required", true); } }, @@ -62,16 +68,18 @@ odoo.define("mass_mailing_custom_unsubscribe.unsubscribe", function (require) { values: function () { var result = { email: this.$email.val(), - mailing_id: parseInt(this.$mailing_id.val()), + mailing_id: parseInt(this.$mailing_id.val(), 10), opt_in_ids: this.contact_ids(true), opt_out_ids: this.contact_ids(false), - res_id: parseInt(this.$res_id.val()), + res_id: parseInt(this.$res_id.val(), 10), token: this.$token.val(), }; // Only send reason and details if an unsubscription was found if (this.$reasons.is(":visible")) { result.reason_id = parseInt( - this.$reasons.find("[name='reason_id']:checked").val()); + this.$reasons.find("[name='reason_id']:checked").val(), + 10 + ); result.details = this.$details.val(); } return result; @@ -108,4 +116,6 @@ odoo.define("mass_mailing_custom_unsubscribe.unsubscribe", function (require) { .addClass("alert-warning"); }, }); + + return animation.registry.mass_mailing_unsubscribe; }); diff --git a/mass_mailing_custom_unsubscribe/tests/test_unsubscription.py b/mass_mailing_custom_unsubscribe/tests/test_unsubscription.py index 06c47507..b6d7043a 100644 --- a/mass_mailing_custom_unsubscribe/tests/test_unsubscription.py +++ b/mass_mailing_custom_unsubscribe/tests/test_unsubscription.py @@ -2,11 +2,11 @@ # Copyright 2016 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.tests.common import TransactionCase +from openerp.tests.common import SavepointCase from .. import exceptions -class UnsubscriptionCase(TransactionCase): +class UnsubscriptionCase(SavepointCase): def test_details_required(self): """Cannot create unsubscription without details when required.""" with self.assertRaises(exceptions.DetailsRequiredError): @@ -19,3 +19,13 @@ class UnsubscriptionCase(TransactionCase): self.env.ref( "mass_mailing_custom_unsubscribe.reason_other").id, }) + + def test_reason_required(self): + """Cannot create unsubscription without reason when required.""" + with self.assertRaises(exceptions.ReasonRequiredError): + self.env["mail.unsubscription"].create({ + "email": "axelor@yourcompany.example.com", + "mass_mailing_id": self.env.ref("mass_mailing.mass_mail_1").id, + "unsubscriber_id": + "res.partner,%d" % self.env.ref("base.res_partner_2").id, + }) diff --git a/mass_mailing_custom_unsubscribe/views/mail_unsubscription_view.xml b/mass_mailing_custom_unsubscribe/views/mail_unsubscription_view.xml index da8f23ca..177b5598 100644 --- a/mass_mailing_custom_unsubscribe/views/mail_unsubscription_view.xml +++ b/mass_mailing_custom_unsubscribe/views/mail_unsubscription_view.xml @@ -14,11 +14,15 @@ + - + + +
@@ -36,11 +40,13 @@ Mail Unsubscription Tree mail.unsubscription - + + + @@ -54,6 +60,7 @@ + @@ -63,6 +70,10 @@ context="{'group_by': 'date:month'}"/> + + + + Mail Unsubscription Pivot + mail.unsubscription + + + + + + + + + + + Mail Unsubscription Graph + mail.unsubscription + + + + + + + + Date: Fri, 11 May 2018 02:55:53 +0200 Subject: [PATCH 08/86] [UPD] addons table in README.md [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75b3ce28..8f4b5e61 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ addon | version | summary [mail_tracking](mail_tracking/) | 10.0.1.1.1 | Email tracking system for all mails sent [mail_tracking_mailgun](mail_tracking_mailgun/) | 10.0.1.1.3 | Mail tracking and Mailgun webhooks integration [mail_tracking_mass_mailing](mail_tracking_mass_mailing/) | 10.0.1.0.1 | Improve mass mailing email tracking -[mass_mailing_custom_unsubscribe](mass_mailing_custom_unsubscribe/) | 10.0.1.0.0 | Know unsubscription reasons, track them +[mass_mailing_custom_unsubscribe](mass_mailing_custom_unsubscribe/) | 10.0.2.0.0 | Know and track (un)subscription reasons, GDPR compliant [mass_mailing_event](mass_mailing_event/) | 10.0.1.0.0 | Link mass mailing with event for excluding recipients [mass_mailing_list_dynamic](mass_mailing_list_dynamic/) | 10.0.1.2.0 | Mass mailing lists that get autopopulated [mass_mailing_partner](mass_mailing_partner/) | 10.0.1.0.2 | Link partners with mass-mailing From 45cff7905f32045783ee7b903df5bebd8bdae4d4 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 26 Apr 2018 09:47:40 +0200 Subject: [PATCH 09/86] mail_digest: improve message body rendering Message's body can contains styles and other stuff that can screw the look and feel of digests' mails. Now we sanitize it if `sanitize_msg_body` is set on the digest (default on). --- mail_digest/models/mail_digest.py | 24 +++++++++++++++++++++-- mail_digest/templates/digest_default.xml | 2 +- mail_digest/tests/test_digest.py | 25 ++++++++++++++++++++++++ 3 files changed, 48 insertions(+), 3 deletions(-) diff --git a/mail_digest/models/mail_digest.py b/mail_digest/models/mail_digest.py index 9d8570ac..5d4c4342 100644 --- a/mail_digest/models/mail_digest.py +++ b/mail_digest/models/mail_digest.py @@ -2,8 +2,7 @@ # Copyright 2017 Simone Orsi # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). -from odoo import fields, models, api, exceptions, _ - +from odoo import fields, models, api, exceptions, tools, _ import logging logger = logging.getLogger('[mail_digest]') @@ -54,6 +53,14 @@ class MailDigest(models.Model): domain=[('type', '=', 'qweb')], oldname='template_id', ) + sanitize_msg_body = fields.Boolean( + string='Sanitize message body', + help='Collected messages can have different styles applied ' + 'on each element. If this flag is enabled (default) ' + 'each message content will be sanitized ' + 'before generating the email.', + default=True, + ) def _default_digest_template_id(self): """Retrieve default template to render digest.""" @@ -129,6 +136,19 @@ class MailDigest(models.Model): grouped.setdefault(self._message_group_by_key(msg), []).append(msg) return grouped + @api.model + def message_body(self, msg, strip_style=True): + """Return body message prepared for email content. + + Message's body can contains styles and other stuff + that can screw the look and feel of digests' mails. + + Here we sanitize it if `sanitize_msg_body` is set on the digest. + """ + if not self.sanitize_msg_body: + return msg.body + return tools.html_sanitize(msg.body or '', strip_style=strip_style) + def _get_site_name(self): """Retrieve site name for meaningful mail subject. diff --git a/mail_digest/templates/digest_default.xml b/mail_digest/templates/digest_default.xml index 6c98e4b8..8e40c7b9 100644 --- a/mail_digest/templates/digest_default.xml +++ b/mail_digest/templates/digest_default.xml @@ -31,7 +31,7 @@

- +

diff --git a/mail_digest/tests/test_digest.py b/mail_digest/tests/test_digest.py index 880aa3f9..9c4c7403 100644 --- a/mail_digest/tests/test_digest.py +++ b/mail_digest/tests/test_digest.py @@ -191,3 +191,28 @@ class DigestCase(SavepointCase): # raise error if no template found with self.assertRaises(exceptions.UserError): dig._get_email_values() + + def test_digest_message_body_sanitize(self): + dig = self._create_for_partner(self.partner1) + message = self.message_model.create({ + 'body': '

Body!

', + 'subtype_id': self.subtype1.id, + 'res_id': self.partner3.id, + 'model': 'res.partner', + 'partner_ids': [(4, self.partner1.id)] + }) + body = dig.message_body(message) + self.assertEqual(body, '

Body!

') + + def test_digest_message_body_no_sanitize(self): + dig = self._create_for_partner(self.partner1) + dig.sanitize_msg_body = False + message = self.message_model.create({ + 'body': '

Body!

', + 'subtype_id': self.subtype1.id, + 'res_id': self.partner3.id, + 'model': 'res.partner', + 'partner_ids': [(4, self.partner1.id)] + }) + body = dig.message_body(message) + self.assertEqual(body, '

Body!

') From 663a06d76630cdae8911675d62426220304e17b8 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 26 Apr 2018 10:47:53 +0200 Subject: [PATCH 10/86] mail_digest: add layout preview --- mail_digest/README.rst | 8 ++ mail_digest/__init__.py | 1 + mail_digest/__manifest__.py | 1 + mail_digest/controllers/__init__.py | 1 + .../controllers/digest_layout_preview.py | 136 ++++++++++++++++++ mail_digest/images/digest_layout_preview.png | Bin 0 -> 70638 bytes .../templates/digest_layout_preview.xml | 18 +++ mail_digest/tests/__init__.py | 1 + mail_digest/tests/test_preview.py | 57 ++++++++ 9 files changed, 223 insertions(+) create mode 100644 mail_digest/controllers/__init__.py create mode 100644 mail_digest/controllers/digest_layout_preview.py create mode 100644 mail_digest/images/digest_layout_preview.png create mode 100644 mail_digest/templates/digest_layout_preview.xml create mode 100644 mail_digest/tests/test_preview.py diff --git a/mail_digest/README.rst b/mail_digest/README.rst index 5024e223..86ac78ec 100644 --- a/mail_digest/README.rst +++ b/mail_digest/README.rst @@ -60,6 +60,14 @@ You change this with the config param `mail_digest.enabled_message_types` whereas you can specify message types separated by comma. +Digest rendering preview +------------------------ + +You can check how messages are formatted per each mail subtype by going to `/digest/layout-preview` in your browser. + +.. image:: ./images/digest_layout_preview.png + + Known issues / Roadmap ====================== diff --git a/mail_digest/__init__.py b/mail_digest/__init__.py index 0650744f..91c5580f 100644 --- a/mail_digest/__init__.py +++ b/mail_digest/__init__.py @@ -1 +1,2 @@ +from . import controllers from . import models diff --git a/mail_digest/__manifest__.py b/mail_digest/__manifest__.py index e8ae9b38..56df31a7 100644 --- a/mail_digest/__manifest__.py +++ b/mail_digest/__manifest__.py @@ -21,6 +21,7 @@ 'views/partner_views.xml', 'views/user_views.xml', 'templates/digest_default.xml', + 'templates/digest_layout_preview.xml', ], 'images': [ 'static/description/preview.png', diff --git a/mail_digest/controllers/__init__.py b/mail_digest/controllers/__init__.py new file mode 100644 index 00000000..f7b863bf --- /dev/null +++ b/mail_digest/controllers/__init__.py @@ -0,0 +1 @@ +from . import digest_layout_preview diff --git a/mail_digest/controllers/digest_layout_preview.py b/mail_digest/controllers/digest_layout_preview.py new file mode 100644 index 00000000..f3abc871 --- /dev/null +++ b/mail_digest/controllers/digest_layout_preview.py @@ -0,0 +1,136 @@ +# -*- coding: utf-8 -*- +# Copyright 2018 Simone Orsi +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import http +from odoo.http import request +import random + + +FAKE_NAMES = [ + 'Madison Castillo', + 'Destiny Frost', + 'Dennis Parrish', + 'Christy Moore', + 'Larry James', + 'David Simmons', + 'Dr. Francis Ramos', + 'Michelle Williams', + 'Allison Montgomery', + 'Michelle Rodriguez', + 'Gina Patel', + 'Corey Ray', + 'Brent Myers', + 'Sydney Hicks', + 'Austin Buckley', + 'Patricia Jones DDS', + 'Dylan Davila', + 'Christopher Bolton', + 'James Cline', + 'Gary Johnson', + 'Jennifer Reese', + 'Kevin Davis', + 'Sandra Robinson', + 'Sara Warner', + 'Jaime Dunn', + 'Mark Austin', + 'Kendra Nelson', + 'Matthew White', + 'Rebecca Berger', + 'Amanda Thornton', + 'Lorraine Schultz', + 'Chelsea Daniel', + 'Kayla Jackson', + 'Melanie Grant', + 'Oscar Jones', + 'Jon Sanchez', + 'Kevin Anderson', + 'Yvonne Mullen', + 'Jonathan King', + 'Wendy Hernandez' +] + +FAKE_NUMBERS = range(1, 30) + + +class DigestPreview(http.Controller): + + digest_test_template = 'mail_digest.digest_layout_preview' + + @http.route([ + '/digest/layout-preview', + ], type='http', auth='user') + def digest_test(self): + digest = self._fake_digest() + mail_values = digest._get_email_values() + values = { + 'env': request.env, + 'digest_html': mail_values['body_html'], + } + return request.render(self.digest_test_template, values) + + def _fake_digest(self): + user = request.env.user + digest_model = request.env['mail.digest'].sudo() + digest = digest_model.new() + digest.partner_id = user.partner_id + digest.digest_template_id = digest._default_digest_template_id() + digest.message_ids = self._fake_messages() + digest.sanitize_msg_body = True + return digest + + def _fake_messages(self): + messages = request.env['mail.message'].sudo() + subtype_model = request.env['mail.message.subtype'].sudo() + subtypes = subtype_model.search([]) + records = request.env['res.partner'].sudo().search([]) + # TODO: filter subtypes? + for i, subtype in enumerate(subtypes): + # generate a couple of messages for each type + for x in range(1, 3): + msg = messages.new() + msg.subtype_id = subtype + subject, body = self._fake_content(subtype, i, x) + msg.subject = subject + msg.body = body + msg.message_type = random.choice( + ('email', 'comment', 'notification')) + msg.email_from = 'random@user%d.com' % i + msg.partner_ids = [(6, 0, request.env.user.partner_id.ids)] + if i + x % 2 == 0: + # relate a document + msg.model = records._name + msg.res_id = random.choice(records.ids) + messages += msg + return messages + + def _fake_content(self, subtype, i, x): + subject = 'Lorem ipsum %d / %d' % (i, x) + body = 'Random text here lorem ipsum %d / %d' % (i, x) + if i % 2 == 0 and x > 1: + # simulate also random styles that are goin to be stripped + body = """ +

Lorem ipsum dolor sit amet, cetero menandri mel id.

+ +

Ad modus tantas qui, quo choro facete delicata te. + Epicurei accusata vix eu, prima erant graeci sit te, + vivendum molestiae an mel.

+ +

Sed apeirian atomorum id, no ius possit antiopam molestiae.

+ """ # noqa + return subject, body.strip() + + def _fake_tracking_vals(self): + tracking_model = request.env['mail.tracking.value'].sudo() + track_vals1 = tracking_model.create_tracking_values( + random.choice(FAKE_NAMES), random.choice(FAKE_NAMES), + 'name', {'type': 'char', 'string': 'Name'}, + ) + track_vals2 = tracking_model.create_tracking_values( + random.choice(FAKE_NUMBERS), random.choice(FAKE_NUMBERS), + 'count', {'type': 'integer', 'string': 'Count'}, + ) + return [ + (0, 0, track_vals1), + (0, 0, track_vals2), + ] diff --git a/mail_digest/images/digest_layout_preview.png b/mail_digest/images/digest_layout_preview.png new file mode 100644 index 0000000000000000000000000000000000000000..3c64aa93fbc4f91349de41a059e3cd844286d111 GIT binary patch literal 70638 zcmc$_Wl$Vl*EZU~;E)hPa7}OzA-FpvxVyVca2Q;JOCUG|2r_7J4*`NF5Fofi(7|0! zbLY9Auio#xKTp-EnW~=Y?%i8@@4eQ#u4_dqDM({u5MuxUfGsN{p#lJiwE%#0hlU8A z`M?Rtfd?d4FchX>hF8lzmZ-FSEU_5P;O_pVRc)U??g(=}qc_f?K^bO@sWc*Y{@Tol9=rj1H|;(n9wSs8H|uN&R3SKG zXaIm#cp}^I&!4RzuQ6;9G^!9K;;td!;W9%S5hZw_M}CF$aC4!NMF4onOCC<|I{K44 z+wx_(@OS2BtB=6Z#mtwP_x;tcD4J+P`n*lSyZ@Bgn_5tgU>P*>k*nK#zU1^b^|TZH zM5&N{SKM(w5z`~>wxeYh=}{MAjxN@4YB@CZLO2SSC)p zV_QrfHwelp_AsHNu>=mX0G_);VP9PSGrCIk5`gmMNd~kr|Mn_}lr8L<^96(F^|)%V z>R_Igp4#EY%2n7VX%8QO7MsN@$Wzxy8l|dUv3kn=i10&$uZ^=QW={*n?JC_#C>$!d z^YyCIIivCo>HVkkhAuzoN%(aQV6=S1wm?yNHJO20gVy=A(6Cil<7$S2tpA$h&i-N6 zG}1g7lIsh+-)~FvQq;y5S=%ppJTjENoqg|}&e!aAJ=4iW7p0oxf3PfAu|3_pSv&pv zcPHFI5w)kyOV4h57d2;Ojnw;20)Zd8m$_5$Y8rYYN5s8(w|3OJb*UM23XhmA@(qR6KD z#_y5HKQ+va|9ai(B0<*dbNaRKp4RVpcoX*c2EX1~O2uttQxQ+#Tn?rjdlgpE44tL$ zxs7?@rRQcbK({7zKJfA>2`cPm`(81t-lAAq&cS#qlE$M+0#}Foch6GSoLCoI8`+|f zj2#@bb+S*R;|qg+CklTWU>cskG-Q96%1VURr;6=AeS!+Vrb<$BIQz-5T6>;`&Wx$( z?zLOm^}iUR;j)-+E@jK7anw`lFN9@chw2%Alb@`;-A&#K|#3Jn6Zd8JS`&Xq2|11 zll(~lpp~hOGhFCJ9P$3~LJS^P>yenfbqQ?0M>A&_d(l~umi&Uo&Mu6;7cXDMxAO?u zys)rvy>67t&os^pY_1Knp^}D_-*jNce-G=_2W~`bK*&{T)8rYfE&xj3y1a3mIpJPsM#5>7d>waZ}t@C$KHPm4U7{ywmBpB zDjfS1xhQzug#!SDgElU#dPM2ZTnmz-TTiF2W82;U05c|~-~O&d#nSXsx@}1SsOy68 z8_FBcD%vxbebH-t$wjkW+!w4pk)kW~`&MD7TKnBpTT)lz1!rBmlBs@^yRC&e)kbvM zUTB>82nx89SJF$Nzq(84chZnNisa&7{8sVyZ779Xc9%)Ok1xXYm#4eFNF@cr}LQRD8RiadEzoMGW{RM){fXw?|_$JvTRxCzwwNJ@v)Oq*RIc-r-$zyn}UpBAQ>~>z%<@Lum z+1SoJm?uHLep%E4)r9iW2_fGsduXV`$mwzk$wK7TR)2cv#pEN1Y0tii#n@@Jt(%F3 ziP_Rw<`?gZg14_cwz^fhrRa)^>7>KMijjeU&bFNwPseMIU7xDfDl5Y#U5r?(oQ}mc z!|96Xq@|0V>wZK4_ZywVg;PlpbB=A?+9}qB^z1A{EwtXrnS$zxl$TE{2FKqj*Ku4` z)b3UO7-|#};OBVxYMJ-;FvZKSu0RjjsQTGXQ1_-noM&+{9qnd*+0^fu_wt{XzOU~T zJbk*5S4&}-zRq->>PUpqv{;M+WWh${+CGGTz}(f1rXzPVF@6{6aJF$EXP{1n+FTZZu=hM$)hi8%1kjo)(|MR?(+Gp&sdr&M=lT3jN-!)4WdTo+I+7~I2DM5W}7z) zyL$koc_*uzUn$2Fu}VTycQ*3QR;sUDwjcd^o9+7etwx82&%yeOgjZ7|zE1l2<#HM3 z3=_1ohV>m|p661n^%ZHl_BWVx1{R|R%?B-1k^QW{Pq#6{VWfc5WSC}lbT*m5dCM$r z_koV9L7>7VWyZ(6SyFFpG;G5QeaZns7p7QfL7r!Z@!g(q-I0cuU!=FqoQh`CJl~VY zJTIXh>DGVhtLr6@fv}^2Ow8ji?z4wz4`Y%*l{{8>EPUT%Hr>!MZgh9E+CYbOyEBSX ztN4Y~=U}Z9^;$6FNz3^CaoIFo`>o#oheP%@Yjo6yvJ8C)%vf=#wRUxn)A1uP3$l?X z6Jh4-KQ8LZYCn!48QP`Zc5{hiji6HF^s*Udvhn!tzLCXz@RTY^AK~x64XYU_C9m(G zZ0GR0-o9|5XMO3b;V}L4>8SnGV7u$%`S<2=$A+llZ#BBwH4RJK7lTGXbBg0lA2Qb0 zI7|r|kB~8v7#1iGkCpq^x0}oQS^eL8^vH<*ark&X{^Q~O`_!Oxgoo-?*kApRM=WQ%A-S8m zxv5=>tE)e|ix6IkyLbT}gph@cU_)tjJbZi~Hx?f}xGzt)D1JI|{^MUVr2n-1=jnY& z*MA$GNR-~CGXZWyRLMWbg!9d%{`!}F|Lr64^M9(Z8vW~zrY8`6g0?-}|Ic$dUi{On zAFF}?X=WATlYe^g`)@tTL*KE+It-A&b2E`AaaLgQf5z~z^FQvbR$#=#Tf*D@+dVl8 zGn6gE%0Tekp2U^(7qIxl*q(U)$M3}}7kTg-l`zi!y2UiFID$_qryhpJ{rT++9k4j~ z6USTN-{I1r1dRjeKL4NYie63GKD2>9;qD2`D~^BMYC-aU-E1bDCl6y0I(8Mg6`-oJczuhE%{GWFo^ep0`KDjQTzwWu2ltujADKU8Nhr%bQ#NhkC-Hb#1 z_swHS{4*nra{j(maQtNMy|KY_R&@Wr4SyVAVX}%G*k*xU2B7M=mVCR2qwpXeCYQxD zDA(=ZQJ**TRd5T1GUSJK^K5;f-9CdCgbjItbnejBkdVHi%lIWO@uvE_JbS;mwBEB4P5#9^}Y%86@M zoW!vb63S-UT!U6iUjC|SAI!b>L=#ku2&J0Do+qG5=l`^V1bm*b2{tI!D0?aF*$hrp zc0N8Gb@kIvy5MX%r$MXE5YMI>t%4d;k;fqw0up8GuFMjDWy_tNUD7^85q836PA7BEHFtK>1oKF9tu})OOON@$+w1pI z-7`JmVbUlSdW9lp+8SjOsE>CmVHF<@wQhEIoBFrXtvKb-l*`ocqo=DK;q8Jx?A#Y^ zh5yc%u~hn~^Ip1WACo<0RErQx0={cPl^h#mW*XzO5Yg zmy}?BK%p%z3hs)hkLtI50$?0tM!#yGrW*Z@IZ9SPHCa)Jm*?c^;yu$*)yeVxt##f+ zb8D;1>Ld&-Czcm~)T(ISTvbJ=Wsq&C#p7vo|LfP6ow4;2YeP;}=fhj-`w& z{wrVcygHFBKub@Ln7j!oL@8ItKv&toeeWtpaWqp`PbaGHsqH2!GpoG(sArg?u*ceT z;>vT2H+?AH82_x`jt)-&Ax;68vzyS8bRtGoj54yLeyEaia;l~V_zkf-v8^PntV($* zwm(P24?P^a`1XlDszk^a5sW982NPt>e4i6X_o!u-7B$=G14RHOIJqRgE{~36XBcYf zX`>?o#>vE>|FFKE@&-v0F>syte(u}a$>j5}&y;gVp6{g!82ELI$Ac1+lu9|JQrCC5 z9YbF{xxcyD)=z>ZQ8VCS7E_x>Q4m><1J&F?CZ^yiN0~$j5MmsGdsNbz zO7U$qa@J%2mzt)A`tM{5oUnuv3HooVhyDEw%BjgaFR_q9zSq1>H`}I+TG`_-z)$M8 z<03k_>br(nw*I@}DiP}#XkYHmT@vNQA<|IuPLz!pv^4m8r2cHgL(_X_*unjhDk}e{ z(M9mnMS3O{WrgxDDHJ}-O^TVt1o#B+boTc7eB{*&yK>`tRvO^%^*g*?;XOhMp#E9i za!yNI3_=3^y10}f^oj?G)XH+MF3c0po`EfI*~!X2lud+$0N;}nJ)a{aZ=W`o4n&bg zd%2H5r}$aXUK)uMB?E_}Y(vABOm^!Kk@V7D;001j39~AIVH0E1FyC(Jk=2!(b3AI; zD!|VB8XLeG{Pr}`mfK-{V}o4iWGLxk|K|t#e~p0OL_{K|(98An(Lpr}G$cGvZ0Jo- zLCaptkj2x%ntb}yRJ@kTdBP^Y&5JjErHuBrWN^lm(h&ouZzct%9*_CXQc_d@yyFWq zrY{VgM2wMox4g1$#f$>MH8Jt`H^6}u5+|t0SWs~wBfg$cA0_juZ~Po@K5a>QJ(|f6 zH9z=BEf>Nb5|GHA2kxrx*1E+_lqwmeqt611L{ST!7T9mOU z=D|n_6Hha0Ladh|dC4}M+k&U>MoFCrPx#geV^@z{TuHJ8)pXU>RcgEhvZt&_ea_W1 zk~cRuaK+5D6(XLeF!VVyreI8xkw*8Kd%^GnaRC5BL_O1cG5cy}o6($8bnw{cd^bBS z^J7+qE)(YO4o7(4t&dlX6z?rjpFg->IwwTe?d3{ZDeL;$)rx9wdI zS_@!P>rd-R_gvlUI62)K5fHN%&S-t!I2vs>9J$rK^Qw0gH|%>QbOKNxC&B%wFn-kgB*T7Wq(W&^d>M7YC17DX9eht01^jsV3 z?4%nR2kk&q->OJbDDuF8=n=D$7!NX~RB)FG7lU=6OV?Z`X%a&Q4hoQb6&!SPQ}+b` zzUVC2alOJS&{N#vl__H8)V}{b*KNY3sjgODh-}+H&&E1MuO{>#( zR@U3k@Armyr(k)@KC4gLr>A>*3XRx54aq=gNOCg}`SSpg&o3?I5UgA_kUpz1rpUFen<0ickq+XDp#$Q{C3yTdzvxx}an5`+7Q!1U%WBJN z+nTDI#^2qK+y#^s*VeYQ)WVvY3KkpYpR@}#)WHf0CT6DQbDCq9w)U*xyW9JAa20Q? z){%`&%KPYkcbGuGRLDSm*fc!XK->hf7~(iD$9` zPvM9cS1o)kKFzZkyDWZUoqH}+i7)+qaP;K;U7nFa1P_VsXCOdWEr9&9qU(^-0Rk z^fx7sz0s`5=7oPu%Z%zV0Xl0yi}%yUt9DvVU)y+5ebCkupv214{R%yLF2XRM$x|+L zn`B=THcUbJZs1B&gHAAr60O?P&UQR-EQFp>l_Z%t$mnueT<*d5EkNH=I5_oq7bt&O zJIfL5$h|+Ep0st+GeMxf482oUR*U_$rxIp!?1rH~fl%RSDO5y@h!$#WeVKu2N)utf3YHFR;HqnA zm`$e0%&zbU$Cl^1Rm>G?NWli#9d<9P+6%5(+TGeDQ9J^G`XUP->74PY$>uznuKCRq zw7?2hpv&f+$GN8t|1MCGoh>4s0}i{5K6ahJXvQuV6QE_UQ8lwG065ki1>peff!6cR zt;5Ug2m!+bsECL_$5};PwXBt$6VI$-ww>b!!em{>ro2XY_kb>ptIETNl-$xWuJ0L+ z2+ri=f=2Iah;A7=(E024?t%N64tcv*uL%5n>TWv z2DNuG%6OKWH^`S>a!>M^2a}Rimz^M#L~G~2rUX4M;_Es~Rh&a`l<@?+8)#&o_gBeJ z!DBud1A}gb38{gu>qgu#FBPDOj(sPXzN&T7j zA)_TYBkwI3DXzZOLs};Y%CTdL7S7HL8rX0SPTrk1Hwb1qS~*~yoHr+nA;kUo zHP)Di@ndT0F}7_1j<4w()7;7yL%@lX3tVc~egGu|BKo`i&C2=m&W`gDHf(-mVKQKx z3|R6)fQX{meHWh-)MriV9>Ekc1QO3TMF9jv1Zmf&@LgvV0BAMHDX5#SUw(w3X_#X> z8-)?VfihULZcY;#iroLigHnvy-Fa!?x?}79o7YwO&PuW6NZWnJT`d9YTt=FJ$MVtE zE6d=nTouxIV!imScuO;16At`nNn~U95qPtw*Tor`a^m;x7j3QWr~&a4eBZ7)Z7sb5 zU0|o-OiZNZ*sMyq%2a&pOLy}3;l&C$yqnDzKj}su3*B5)OfjjZ19{0CI?S)FDb{|# zsUA$YN6+Vgsp;8GgEKKlsH$#K)_K#l_k195a@M>%jJ+o~zfd15<0Z-fJ})EIIWg~FlLNOxrx(1(Iq*cf zX}deC?_C&~+$Z<2^)W3dDCx(m3Tjytw1a#2_$|5B>Bx`x$1ORZc@dMg`zv;m{PDQ{ zh~(#x(>Duuus-2wLr{cv^ckO@`5+p!FOL8E^QL`vW_QQh*1fKQ57NG8R*U{NwkRx# zPPh4P9BR|Le&!t_WckLYV0dB9#MZ(7;B^D{bb0oIfrn~FTlJHf+1YY^eOOl8o;?|h z{XVTOFw-(?A2d4A;m*1^H9fg+z5mXG+qes1z)V|eH4iCv%X;x>00Y1g!;SnFqno`v z>!Fq@m;6nO`4I#y-ip)Z@F*oH=tlqb1g$E5pG)r0V+fy%C1--n+UBMzBU>e;ua7Qh zS!tWxY@8aB-zp{AKAIMo==p;To4!2bs|dZkf?{qm&R3l0s>ILo!T88Zijy(+smV)a zys2iUUpA)|GatdYBK&@)eS3^MA2zeqA*85r1&#Y-+|=Bh+t#)$%Z-%BMxP)vM@oD* z&#?J*WhHE}h@@p3J@BfznIKNcP){#8q7Ql%*XGf7uChb$q{adL#ZsN`^Xzyt*~kMn zQr?@DY62|pTYdP2&;41(xmSq zOu#Elwa;cwNotsxRG)rT7M&JgNQmfzAS7y|qDw!weZ#^)Ul{3$C^C(MZk8UE-TI$C}!x=xE>erqDtfQ5*?nwX$DQ!3$;stPHFR zwJiz-vMi)(#!OHmBP&lccL!FyD5c!iu+fnbM%J4BdU%u+a$9Vi1SAZHQprH0RJjbD z$|7kixBCf3crp#dO~>Bmu@nF-@u+9DOqu=)~LqnD5vGCmZVEtx{46LQFl7W$dE0vCk zaLPA0X$Y!R?7K-01F`?aWj`Sx4rpo1gpU@)-cdyuDIp2=NgV{4iguanya!FddU4|V zZjUj$j3N*xj#_(6lr0dx*Oa^A;)t2aX{WAhX*5OCM-7ZbBqLIVtp1iSBaXeYXL_l0h?0UO=NfpZB05i*QbB zLmGU=?n4qL9DF0!==Y?z;_JGhxGb4FiLdhm6#IjK@=X;FHpM$}Ph>58`p|Mxt1Ha! zqg7kJYN-tJtXY)(iJA4+)R8aKh=W=PL=%l%&{~6y;<|>%DJ7QcG4YFYt5E9oxrz6* z9wy(yVGzz0Mgfj?Sl&3!BU-~Myw2$R?x*%+@Ib3No!b6SZayFa86(wpOjbz2bg$2I z9LK(cY)lkF$;|dO<`vE(r0&ir3f4B%%6l{!o$z`PSFyf51!3ss0ssqhsCgOsEQdkz z$QBJj*K3-){Va-uJHa?z%vO}o0!1yXhlsEpsC_D8{==Gz9O)jfiWCsh3z$}pr#52$ z;zyN!cv|>?sQ+P#S{EsJ^Um-oA{LUKw;CKyNJY&}N7rYfeJ=+-2!y)gBakpDpGHU` zps`~q5d{PgE>0V$C~Ez8*!Pr(f{xh*5o=B3we+1MRB)aK@g&cBx<#iT!rp?<~R$>Bhv2?lPjskL%~42{~x(wPIh}So`BP zV;}5IO{}kj!CYA`QJ}1yiVz`H!1d?UqP9OdtIa*?C|rr2v!f9&u7@x+g<5v-82R$j zrjC&i6PlzSweAjat4&+3?_OysMI2aMzEy zn^um;LB@o&{bn5Is&am{wQt@GDvRc-f$*uel&OJ3Y?qPNITe~#l+mbjgd~?Ev!uBZ zZ`Iyt6WV0drX=@gG+1b4pJFce$ZM(j-% zb3@+8{u-mWG-7_R7}^Mccur@P5kuGjl9C6OO*WEh*R923=!=BI$o>R=5Ez29GBXd9 zMH6x`Cz)2O&Depcas3fT7FSBFME=jM^mP6LkG@ue4yX`*G?Oh`4OS8us_E$Isp_li zt5^FU=0}!nfuJEXE2}eeh72_$(*TK~z(<@OrhVJ&b0q=k7@ zplp0`wnx$s)_UGspe$;gqA@r-FqrMkQ(DHD9EwA&P2RS1JI`P#kgbIKag!wW7rg$l zL5uV42FyA~@ofYiy*OcXkDj`5S!Ed$8@n z^!o8*kk{ywO*J~Aox8!)*g()|cufm2LpOO65lY1x(1f!c8`y;fh?u8Qgdg8yb=hB~ulWdNaFX~M+$;w*EBF+1$jDkqVkJP_+g;{UvPybb zcS8Tx*5P5K=ko-6&h1k^APvOxn)p1oPl!ej_SV;*DJRn_iJ>XwCQIdi-JP3j18)_` z&PeJ$ZXL5^f3@1OPV@*RxY|<>PqN^r2wIcp)mo3Cw==&J4-4hoOD*=v{;6%>60UM$NIsiaP%MnYb&S&QDOZt=xBflJ@COFd)eF*MkcpCIUj|BIA}R) z=w#UONt`nDghEgz#2I=7CRteTLBI>O?Vpvau_lULFg@SJ5 z#hbz-4K&rX;vJ*48F6M#Q zTO0@iKp6IO>x)iyoJ6P$bxkUpvK#?EK5cO^3;wHe2L{VXIJ#JD-Cs;Q$;3A*!9) z~g+0ud1qEGH&zY=O32Q2un{-X9gu* z)zhOx0@!8$P;TSri;JHHk&QgB1x<%X7xfzkH4FxheZ}yKi;CE=_0rQaQ%l|g8#i|) zTj_N}06?#v4QD7+E1Q^9)6me=JR%?)pS&D zbjGKmF_QR2)qW4$7s97p@4U=^NWP5-!g=H8!})rpll^U8-O{O}f5E3uT0~!!ENHZb zHbAi*{xgW26%THcpXEtPFM&4KDk>hhr4(L|JdGL{7@(U6-Nxp}j1E^sA}C^s_s9WO zIQx2tFQ>U5L6$=CKl9cYPa}neZg>AUfOo2(VIctV65znC^D1p$;NwF?0YtSTo4SE& zsH3dx;T2&w`+Hbx`QabT%N-NwQCLXwhg9<49c%q1Q2Cf*{<*x02+MmtmbCBLGkkF6Jt-s)Kpd>0k?aZ8*qPDBuWc%=2{P4Q z2hvrvQ&n586V>d)3@T^!E!h}YO(y+Fvo~#ROBopl%s&b+kv?KWMpW#&>--zC{AJJ$ zmEBg$uRgu&sHA>^PnRT!0f?XxvQ+JOEyZLgn(#PrcEzZ&3#T)iVzG#Lq60yBPCTS} zWuZ|h!FgXAJ$D?wlMcGf?0L8(GU#h-qoas}jHZ`44IV~iImFVpJ+!AVB#qKGB`H~j z_ta}Lm51HZa&vth){(1FJUlX>QtyHSfY8f)V{DKP44m2_#v+MEr`seQFY?`pwT3Kw zKN8&H5lM@a_1kOaQ8eiG5WNQ#VEMQ=6juRcwj8`jn)rt-Q7Lqh9w2`L|*444ou zt{4I3z!O%Sz1V|9G|tRrQ#-t|Z>S{-L&e_yzARSIeHiQqIYu5<(U1Z}CYJ5HTLuJC zdL4P(eo+f6Iiz9 z zSQ~5P!pVp!M#iMy_OkuZk!sMYWn2=F8MycY-YQ4>UWoimdA!%dw4EX zhWJLd=C_hIBK=Z$iza0?4KF2R-yrbvP%VCfIN1f#rqE~WsfFDQPDJ;Sj&>KP82YH4 zoDMqL;{ACNMQU6*&A@3hKHr1%qRNh|aH!MDFt>pZxHQep3rYJBkhS*k;tSuUBk1c- z8qL~ZPfC>0Rm0F zgF}u`gJ=8b>w^Z$d z!fDs`>Zr`yxhOw|xoJ{rp1ygR4|;Yr4hC)-jKc$L|BLT?_x|HAq9~S9Uql({Q|gmu$vCORzH2w>u|2b|9f}xI_qABmrp-CHK5q&;f@}L#NS@a-v(2qs;r%;dMI#kwC{Hgk_lD(# z+i_;^Z#x`i{QDfE@eVm()O?MMHari0A25geBZCS*tj8MdLW4jALW$?z0eOv`I|cyV z?B<0uEjFc~Xdy*1HV{OlJ}nA6R;Sh0zF(FxbAAc3vrkP{M*h$Pq|iexZR=_|mYfK3-|I+hgiu$TY?X%_#Y5|TB-H(5{exiJ@{<3TNu>|dGW`qFwMzdlSIUZ zenu@ngC9sp<9TU~j1<&}9s${Wbi_6O9XXYlCp8}oJ3v)Az zzu|iuv-YF6jeBOUu8OLzNwC$1TA))mLx;4e0W~EL!O&6K$1rz(V#3;S&&m~9#Od9a z+h0>hqJ|!-J|4DlAmwc5{`+oY+!(~4^!DUg=5J&@py9B}o-2!_IFIv&Y2pmBNeaV8 z0-W8wHkL`L>o|Y!nle~nndqNc-`62OHeW!7LgQ7j0(o;?IM7%xjm*jEkqgjGlmS2i zo9!M5@^3ujkH7?g8VD06j?UW=3%!gE5e6rl&jJ8=`N-b({O9Kh=|^OGdOE~M@9CeR zH;gWv-gi%%OdnWYm*VZeW7-HaC z2t8U5y)5(K_hi~)mhWn*s_CLGQqSjEMYVS5DIe3bYYCo+E>eIzc4D#&^(PU^s@9sX z9Pg=RlfTYDYieqDJf`gRyBN3xz8sw0*PedVu7omWy$XKN$0%Dq2=+4QS21;inI2c& zY{d~1&tBQnDRLd+{Mp$iLn)ib`0?ZCaRU_OE33Rxk9%`WgQ4TUe~fiEc+~#}JhQ`> z8#2g-_1lX^+^>6Aku5z&ov_L^m_Sxd$9Q^ren;C+)70KctIKQ!p_2d&u!BAfs_DeR zE=hb=4#r+`P@2}fnb&L9jbyQ7Xh<7duucQ9ErSfM%*uA}dptk{7P>9|tF+R@Oedk72+H!zWobnSzY0Lt4i>KFvARJwm5IsD_9=py zHb!VS=*oj%rY_2E4%#GH*yQ)ba=R#c$22LCsUk&{-vZ-_6-6j&8h2Im5Xidv`nWxr zVX+8^g}wuq6B837VOSoXnXCe}gn6BWdC@1)O5s1hp??Cz3svmf+Jl&wE651@uY$RS z;gyUm|3r@0HWS43xt4@92qd;HPT{#W~cS*y9(C*op5)k z;n%`*N_Nbjl+-5u#%K!II!I>g-LDoyEEfaHZ|oflr?%SXZ=~ea*VWJKI*;T8$Q2{< zk4RK{oCQWVH*{i!?)4(ioQURZm)OH;8rYx8TXfZyQr^$0d;kYdw*=~`7dWN z^|So;1U1S~P~fNM%^_i@ZOF4MaVSBLKYGuP>`zX{o`?A;p1E;0h=?}~PW)b&xf|~~ zS8#9AX(3h#&nVX*7XfepPaFskGjW#7Ayat}P(~F(E&&Vu(EfNr+UN+sd?<)HuotcM zk;`DN(JGv^?oqaV7-&U3P%Wg4oKe0(oJh?!gX@Up+{N7ytlS$RI{^r?Tp$~mCV>3oI9|1~A zw4f#DCM4Sr?jG;Z=zM0cukyMUjB7r2&QAZFnw(u&4GE|lwtNjEL#G55e@!;;iN!%g!Bi8(H1`pa0}4BZEk7PbQA~0CR z_zdKp(5U*`1M932L+CZxiLt!16ucxa@8z$FKdWU<=qSbKG}NQ46d|Ee747csmNRRS zNgEM{857DTszg)#m z*wPtNdRILt$s1N_Koaz{*%!cZJ$L)!0~3m)GqS&iSHxhe9Y=pN4JGP!z&;)TgVU;*BC1LM7J~*w3JOlfMGJaj^+JbTgMIEJ=&+8<$cp| zYui<%TNdmXKlw>uacq9V1ev>$kC<%4A{@tRd)KBRcyxN_2r;0cV`^e%`uFttt2|g) z!SJAuuRL^qYTg3rfcJV%C?Kt&V{!ibxsM6(Qqi!ZvLtfx!H{+@t91(g*>Yd)`e>gR z7M`c#%s8O{4Xl^J9_p{PCIyrJmp8wg-OvNcQeA+I*uv^(dU4TZe6h zZ}1sDlE{$jtJZn7P`9M^C-%>#>n$Ll{``tVCeiJ(^twCFpCD3#0jEtAx_cQ$K>SG9 z^ShBQ6a0S6!zJUYynL#|TyXl5p7{D%3X$J`g!Wc+^o3YdSc9d%Y=9-gjbmEDg%71) z1a?jx?fvw3crGM$F3jKjBYppma()K=D?2D$Hqd<$i3>O}R^(E~2{@^(_=6lV0KyUh}h16@kkpXvui{V=})sGHp*9jsC8N{#Gj0Jp6F@8> zf!yQtYDY00xOUT@yDde3uGISt!#nL@WB>@_Ui7;j+Q_~AZWYaV%)9x`Z(&y5VplQN z$hlSS`rtYX4)oc23B9`O5k<@Uk~H}Q8{nXMC9^8XRIq;zeaG|-em^NXxc#R0idzv9 zjsO@PZm?a44~H!^ZvSaez#G0jqPt%VEgTD$KHg+q#M@rHI(FO}a}cuFnsU5f+kLyY zvpCptb1ZtC0X@Cd_n(s9|E%2TWjr%>($+wlx~G$nCUm^tQemWQ?$3^41d$ntg1S3=&)=t^u5#B^dbHNPAr(F?Q}t)%;mTS(X@l?M`rn?#jgI`fJM5nlhu>V> zR)3wk?=~cTGSYf{_j#JIwMpxK6Y5Ml2fsT89Py=lF&D4OR(}R2q!$|b;{dp;mJ7E= zzqCHSOYDfu*&#QUfLuoYtBtABPT?hD1v}TF3SV*~ zZ?}@|KV4V)mvbwfmC)B!W)3{d>_b@ozQ*3OQbSpnm)8yNr918?cTk51m`ZO3YS!q* z4vJijbeL^CcTf$>ATn4T_v3K|*M`trt8D1OR~e-Y&6H6D!0FOFwEtDFesOP5@6{Ca zVv?!=&6PliTyIRH{VEtvHjK)yF-hx~KnT5`Kkqw^_1}pp*f=z7JHGQY$#|Sb$otNM z*;wdg<8g=XXk^^ojx^Ze&*oA&qF3&%)ZapI;mK?q)jUF;U9W4XT{h;WAER^ANp$fn zjRjS6#6?S`sJ@pn=y4{E2%;BrGMhCWYB`&t;Fv@L2p2CNQT&S4C&xk%ahqKtCL>8l zxXYbJE6sHtROK~Hw!~v?y-&({58d=xRF3HoCJo|vRt&p0kWR7U6f@cBfLxkO&V^#$ z!v+^GCeIasg!NS*va|!Uf16?3;qTq(RFIA-MHDZL$qtsr9t30PcRJCU*>!KaU zdlaKt7Yn+lhD*^>XnDmFS5jZp!K5T5ZSBiX8BP?XU-d&tMSj2)0pK&UxjDNa4-b!J zIpYcyLOlB<7iZ?h{$uDxZ^fR^Sc72i_v13SEBbw>G*V{8aYHXQ z{A+n!m*+k7yJA>SV;2urH7=z)&f5s&nhJH{_w&~UvlKxfB|`HceFc+H;(MRcGoyB# z+AvTwZ#6d&bEatZBM=S_4B-&FHE-ZXHf3~=_cu0D2`p@;B_BS%o969JdDfNhw8%vm zJupN$BtI(ZX3fxiNA?83+>~T=kDh~j> ze1c5_7ZPMAw7)REK0hP*W~78=;66Ojar!}+#{@t4%??L!>y_Lqv^R(%oW#iD+J5AA z#|YAFb7R>T(H*|Ei3CAA;~1d9h>}~4Nd1;A;B_S1uzVa76Qj*Mo4O$ARbIW)d6$1N ze_YHOdug%R+uQr%s^&#sHf(6>;{Zm}VM5?>F=}h+6+zBRg>2VHZ$o*+-zBhnE{{Z& z!{!VPm1_^v(p`&36+=V}+Zsml5ddp1&mTL6v1?OiY;)@M z#GKuhhB~uoh*q8`l#MbBX16&xn8~h1oz18t!EeT!)~%Qw1bkOKCDqma5B7h=yxByh zjfoA@pJpt0>2iHFoUm0zn4YDB+gM}ij(oq@aXYJ}6;W!}*HJ&Zdw1-Mds?%3%ce@;+*F@2O=C2S2+wPB4H{JAb)UG?u>Pqd- zBJcF6LVhHD7~F@Hx4?r&=YLqRPxsj=|F48F z>HnGN1_G7;-(UXke@%RgyU%I6Mu(9Oo^mssjNWm&as3@N6tPqA9d4P_el927QAV-`_ZYp@wh)7AR<@7MJy zg*1Loj1d7}7qDf*Ub_Iw*0sUib6a`?l+T)~EDr zepu)Ea|1e2Lb^Pdt%j1D#J4w#S~@0S1fdmq{||TX85Y&HZHtx)2m+Eb2oeOzIR}9v zNfJo{k|k3hLXm@_B3a29BWN?&lPMjMULV&J8=#^txqr_n}_f|K(J2sxA+K_@=S-DTG{!~%# zJG#?P5#Mn_4P7+&*6q~%L=EJR!H1xhz)-r(L-XAaQWrnUWKW)`rNIb?dj{4Gxg`DI zYLyL8cM&n4y2nvrm&him1%tF%@hX|9{Yu*xa93AaLg>$%Re>SyaxOpm6SO!;5zYu z>YU8Sue_ohXrV`0GmqZXte-Cw>iP2IA~V$p1e)qj8}2Aeq&scvJ;(PailEyY;2<{C zrFa+$^I#6d;Zo9ujq8nL(hnGK=jE}MCGntFL7i2D3-BWfRPr{2gG9NSi7X>>Ah}bb zOAVYoj!I+N@+!m8SdF!>(!H8!E*k1k~`##Lu-p>bCLV_} zPV;gZNN1fZl^44OLC77_<3%+ag{Ou$hFtxh=hfY`6o+wr5)h0I zF3QH1su9<+n&UJY6I!^;BY5!92Uz|^q~HlvJ!sn|ix0fLpk=h!#x9;UleN@dinAMs zUftjT>o(|9&;rrh~k&QT*aP@tmpCF*(i zQ2@_-?<7%tYj&itY3JP6)v2_7ULSxquREFj*-oUHjDV&`iPb=~kZgi9t#513bu_Qa!C_JYKMn+>1ix0+JPNHp$rbFnXoD= zD+kB$n_a2gdlrzSMJwV1Pq0&ePu6LQk0y<;W>{6cptiE3Gz^&-kArqrL6?hl6C9H6 zT)*x)SGO4$rYx zi?(q3z7}jb=*DCupGw>QW<#EYnZAHQQ+w-YRnRJ@I=1OFhL^_T z_F|IdC(Cp@L?X$Azv8GKajwlzN=vN;fxC|7ExZkkAH|g?`aV+&PTfZ=&cCD$P7~6z zrc#SP%dthfwnG@yQDwu@^_@mY(rFo$eoi}l>s!cjr0|u_;4q&kZDq%$)*MNxWCEOO zwg&MBn8m5yIf4h;IZ@awz|NH~O5g7q>anRx+G#`S0VmQG!fGlUX{kCmjW|dB%XYHI{c{}=`91_Z9{^2FhqqZzE4y^{yuUy<>tf8wv z3s7Ek2myFC<9iMqC7a28XCasU-6%IVi1KSuVU4RL_mHO*Ro#f~sja1{_Nn3dkzDoT z@Koc0@al=w)FU6irs^`d*ZA?})HVWfG`zgIe_=MBw&Pf|4Vu!g05gda1ky9j~S(Q*qCp!PHV6wx|sos`lEiR`yrEEGO;!+*$$} z76-J<$j~s^cz_eY1Hcg_FwOxkE6?HJYF4~*(9gXZaKhItUY|rzi$?xZ05cTatc5Km#1H%`mKQ0 zUQA6-AMGu(nI8cyEL2xN|Ak15lA}g)3zGnBuwYE%P;8%e0DMVKTSyMA8cPwAlm?L} zq=~y)@G34GGq99P=Fnj_ovu*PpN*CHE(;H|im_NmTcxb~o@TFpTB?yGST~9+cwSsl zL;$|9e3MF`O00UHuq{wgJLa^n{ChGuA#MSyLU9B>VxQuq))z`e(Copl$}|sMv~=)~ zw@hT;wUyx4vV0MyO{OHHMwZRh?wA9 z0)hzBna9y_UoF4|>1@ar^i}X3bCqG-6at$9R!Zp?({(%Ka56R7!OxtH=F}lPITQgh z;KUx`W*;^%6w%pUUq=Dfy*jSbTeh%oW;-C;4o~ChA0?5~4iq+58Nrpi|6Y-+0M;{7 zY4bjw3yo)44jjtU&dpE%R3OGJId6b%03q(E$P$}P!0gFHom1~*<2A*Pc{T2u$9XBp zMa)M}|LwAYk-i}4VF0X&cf}+TMg*d z;X!MXzBcp2#euV#lBPa>W~N_Ir%wsc@OTal0<~Ab{uHp)hpE@wTl~E|;AoOrj|6h^ zBrbRe>nkFG$KoluPM1eb!9>EEQk*33i@wv?%^{!4VSe#Y$RdcyU@h`;-f%1SWOIG0 z>p>j=*UN%ld>1a^YhXN_-_uVL<@DG)_)-3O=|Hk`+2Xr}PNcg&kriI3D%c-wgrid< zsLRP%i~y4A+{vTJGg~v%Rk|N}PN^|c3C19ZSQ9;aW5@zQ+zyMbkgCOL0uZylLF&(#;#90v9chYZ&)BX@Wg;)w-3jg>Cmiv!8+V7goRTqBZ&)H zuoVxD6#|1ZAYFR_f(TukX@pvQT$xc^|1s^VYC{(#*WfMWmNzhO)xIL*9%VBfJ)vCk zt5&TbHyUQnc}cqxKK9I1PmQTp^V&-L`f1>#_S1gz9NPkiwL28>?h$U7NRXggrH<&d(2N)h>MSh%Qa8+!e%u$qC2pz4q$6rx`4>-(SA@I`b%o7A^Mw+!TicS z@*}dHPXZOo7U`FH80f#L_y`mtS@3|FGI>22N7@>2f7nd9Z69nsFb{@EjM);{%YoHy zF)J;<4}wIy#%JANFe}I?jpLgUiYFkBxu<@sgdZm?2nIQ@u`UD$FMV2#FWyL^%wBK4 z_KUq*sDprw>fS(+nUej;;*5HmFfTdXc8xJlH9|@-SpQQ_@lJgTgfKzLUc-PG*HKQx zfRt+k1_?Q97AP#=a@T_=>c?`Fgk)Sg7IgI{wP+ZaQ^sc{IEJ=@qvALmgEM#z;MVTF z!5vOJCn-NSh{Zy;FL25;8ev3I*8KE@hT53Tu1d9HR{>TrH1S0bgXKp(bPQ6{pTQ(> z*$ek2v{x+)3aaQpLO7mo*(8b@l4wH;iM4yzTvbN)XS;-ozhbMX78hoe6~prCbJ%PL zg>Yt))#ilH(kA(f_$OfBvIrp>8%k&6%vc~U;Kh823;y&dPX0ZOC+*>f7!ZiNOLzqp zUccT^aDmS87`fDaEC&KqVpM>-#`ozuSY!8+Ki_f2$kg51=Jsn^EY!$d!TGLf@s0$K zRt$*N-P?ix{{<@p?t%f#=x#&pjKN|oF9RG)QIL^%MWZX|?q?Wt2EW{&#%fS|E~_06 z%%^-?e+p_LM~xQ^6!N`K_HR-6mE=Ud&qR$jG0AbmyiVA?7^s1IjCjL_=ZBr3sDi+i zdQoBs^bW6FR~^V) z{*aQ@(o)qlzOt5PIU1cHrf*Nd2-1Ut&+sHs(;FRt+W^3zqHJ{far;htfK=l{>_Ek; z%r5P~z&iR;2p5h-XBe9r*zm_X5IuLhC)H1XBXoAAH#+P1M#$H|;)1I!&>9()7iDsm zG^WM-^#4M^jcFsSEX{F(eE459>~+t8Lm{A@8S0orxSiXb`VK*G@#3$0{qa2na@u zF66TMu3yvXV=PNrJGriMzM3ObWg``Cob$~}LAEFN*H{ue4S~7p%*e8HO z!$v;QECixjV_&Aky8Gu%awi_az9m1;?ok!Otsa)BJ9vNcq9BUMi%dR!6I2HRbts|Y zl`%AOZ!*iVkj&zkjRmF=U0=aTQk&sOGm#Zur-2}MW>_4@45L}_*A+L1ZQ^DVG?*!UxYVD&4`g4MVX2tJ zGt9u!(2SkUDsRl$fEU>wwi~C|O*PdUkwm2BmpKw@l4}wlA#~kRZ(BaufJ1B(3EE|I z&v%;QcnBh_do#90S$lM<`NtW}Mv22tr4*nK<$!ebE}!sG&AWhrK&xcJ^$_ z%4hUn(Lg6Z0rJ&%fAR*-D<`MDDXTOIS7KUBu3NpQ{xb>|>$YI`oSq9{5LvAG?0J>_PNL9xj`r|e5fl9)l<=Js;dGrPx|{;I;UFxV$7g)6s)5f`W@Q_Y zG`ct@;ZBlhAEf6r6Z595vTd_6>0>my5xzp|k`)KQjGD~&eorW%5TLzEz6lEL!sOML z!tgt3rM)Ni4sZEjot2SCj z*aRY^@-n|+fa_#KwUF$bDk`S`a#dG1_x6WDDa1P91yfL5P9avLdP4)=ePIGD!kt-} zVQ5Um*R@19|E}Fgt!3L3i!i#yi{XL<%_jyz6Ipq82=aU0)rCjpA@{{hNo}TG z6N~uLxdqNa^x@>@Daa+J#mDUoSW)%oM#)>`->ZP z1^fIY!4?tU3ruYHi%ADd;FY)(V_um_0TIIVPFFx8iJC- zI@m^dUg3tkbxu>yw0KW~Me$QzQh}X<-#!L0(=4ii;V}EKXhX5m!U*oKcpUY@V25yq zdsc=An&atIo;i`eg;x7yVjS1DK!~sE2YUEwJ>nuFgX)ZTOlfv4wy7_X{`x~skyr*S zpHeM{);?dA5KWIG5SCPq2%OS5vk%dJlW#CG&aEx4Z8GKiJdy&O3ST3-3!)=J*-x0u zL8sK!9&%91Z_A_snoENSxDdug$nrMl%sMh95MAOB2qEbR$+OxNb>`T$}1=AubR zW7QMDY<^Tnxpk3S?(unMTn;!RPe>lPGrMq=j&;pAYT%?=!joWLN*o#`@onJaHm2jPX1paAAcfz++x2K2U?2FG{y-elN@uyi7Js2k_wIaEAeD;0Z4eA4Q$=+C|i1RTGP0hMg_`X z>~})-Dy~_y>N6to710m2GRcboNesCOsWpWz7p{cFLzlz_zVurlDS3b~mptFB0Qv_U zFVMdT0M8P?Em0?qz(4|?e@o64w!BbQuA`EBQ~WTI$U=`=xGrM~X&4k2v8v$oy-uS& zC=k)5r7dQ&EezY)ut=V7_+}ZiqF=2S9T!2{ru1`4O{<^JMHdXD`<(D&k^}SVQ!1Gk zwF#MQ2u15sT)<$+Jq0Ji53nVsD!Ta>Z!FxE?s>$*5~NS3Wu$dqFeSkE^t}@y8(>3% zGwDb$Z0kXP((Og4UZtS{qtg8D1H2t$VSH6mIVZx~uqCVh7LQX{PvHkL0f2dGWyGSM z8Pun@?VS|pFMTllGu>QRBNYRdZ{zxOOm9uU&N3j|okHv9Ol*>PrOs#l@cTUtwi|6@ z{LPGusw*48Ng=Su-Xl2Q*j-c&D;D)8hTuW$|lC@x~f@T0$kw>2(ST_EsW~!m`4iT^*Y;} z>fYR6>)xNW`cHYFf|!*~mz5Q!{YsDbb5AY%S2PA^`tly6FJC`(L9wlLwnMcr$`B9)kVJ z3Gxeg)8@#MqgeioAA%B`7#8dCdbF5d$_hQq!RW2!)7JAikBkz~F??YItW$xR@j#i1 z5ahss;i&L4onh@w0<=iM$>BtpJy#NwKq8V60^rlWQ|_C%p;!Sx7D8)nJ`;%(4uUn4Z4L4qPVBXW4?wY33ORaNg*I+=%> zKaN4>ZA)h1)was|2}g4CV28C(MNRGDz$DqioOHs70#>f88#h|cBYwFi6mNn(f_EL0 zk6@IW)$=EAZ6mK__X#KZ_kqz~L`U9^z2hGG;|J6JH&>sh zi|+EWDTx;cRaD~<8{C@z8Bz_N3-JVNL{CiP#ZzQW)w|l6pHMxTS348c;Y4fqD%!2Yh+Q1 z0=rRAVxS_i4J(ciXYiB!g7KG-;+_@knT9RmPQD!}tUB6rcHE3OwylPNo>(wJ?kxA1 zNBS4^)$6OOTaChR7k_ZI<(OCSrW^}ZLaf}wk6P}bLY92YkWs#9-84u!OMVTVZrF>oOb|b6ZCH2L&2<`{CsIm6ADIrOSGW(b2s5!ndv)8}5_BN% zGr$9(DT1N4c@-`ooD7oo#SnrsZ_(66M?1hgbv;)iw)V@!A z)mC!RPSsw3vJcwLy`tWyu7LVzX7Y1Px2cwQ96~BeX{t2iSqe(>AEGEkJG~6dt#WMk zjue~EQKJ3y3&#x|f{McHqxh;i@P>!M9YZr2KRDPZJI5SHip|>PQs1RR*y><5i8%@3 zcC1--NBpHlJ;z!paW<#U8;7?d%nas6vB!jYHyXAR;dv5qBo<8*(BZ%wcKyzv^8D3v%daj%kC$}K5D0NLvHOv9K-JU4Iwn4jTgpjk zoP%NBBdiTAqoZ}KfPg$Q4$|3MJ~moz?_o%6>?beRZ_r~mvk1_q5Dl-Z4U)Scah0pk z06RKVl&-w=OqKi#NhSaeF@D3ue`T)!74siZbomWF{b0;yQbITgfp|mS!A{lBqdLedupcY}&&~nOVaK~%FVPC~| zppD5cBmiRE6W5H(At$-0y6xz8x97R5?WDmHhXU^vopPnkVmXE{ByTn-QuPXy15V#p zG0HM{gJq`%3a}Lyk5Gal!0vp*|M%dVggyg?X+MK4JLt3&Or)Xfeg<%qyz?tCcxBsc za$sB&5G3Pp-7%Ea?l1kxh+vGrT1nbqJ-VnNWbA2q!Y|}?sMeq|;=mQi+*RrT``Fi; zCFrx^1B*G{HXy0C>1l{_#08ny|0XjS9haWJ{#(j2zxk}ltR5}{LDXVZx3b(h5Oujo zj30t-KRtNUt@v^PeRZd%#WzY&3 z==9Bv^RQa)vGfZbdP41|Hb!|vG{?7mcMM3}^g8CA_;ua|^cBC!AAq9i_$q$DrrF9H z*L?AqA1Zs~BjS?!XI=4T(C!#9tZ4ySwVk_1>+#d-Y9oX+Y=ACFV3Ssjr4 zspESGmh6`6hT{!`kf<9VM&PVbK5DmCFc#kH9WGkiEuXn{^ZSXAE&M&Nd3?I{cf2Nn zYHVffjy1TguzW@5o2#>`eX+3Kc?NsULP|C3_{E}S5o~uNv=podP-+CBe3fd_d)SX;(Oll+UAb#H{8Zq=20(0ZMajxD`8wa$D1&qWWlz{LJwEGR9 z=6*Jt0a~MfC{zB$zM)hPz$b(UP^O&j=wSgg+PhzYGN3mBu?LJ=^m6f|Lctj#dmxdTjz)B9J8LFESk_x3F-$%fvXw2noXUhN-GfY}UgYyYqV zgS9Yjd^GzoS3%3=BL*!PHByWQZbue1Hnx3nJBq$ft?&+48>6c|!=k5us@1X0h7G0> z+b&6J2Ll$EYEF}1dATB_hQ|gfL~UUf=8Fr zX)liq2$x6Ub6F4QjhIr&!0A?Ero)n7lK|&~{z)PeI1TxYF{N^A=Y+MS>wf1Y`9LzR z-LG!GsS!zSPMc59oM(DP^3~R;i0CahsB3bOj?P)eAunlH@g}^K!aR z41jjD_aC3mDV{D-NouCCu{oZsoB z#_W3`xiiNMzjNB_&sSr{Hq(AQ#(XD1XIxiRM<348#Ey&!crJ~vlnK=)|H z7%tqdLymPr*O;$k&aSmBF8yN0q!PB9$FJ=+jIFP0ug;sfkk?P39oNE_JAg7133S|f zgivN9cQ_l(B`R4L(tHxq84iGu?;n2O9q>v41eHSCUx(aZMk6rhKPkW|Bp$Ce^(9u<@!KV|FF$}&%*sv#Qi&&`>*T&H{Rr) zFE~me6`~(b29T#{8b1|8$RLP3Wo7**J{OqoDZ+q+8xgl)J~62i8+#!44hyu~4Mb?a zvQ6MC->~DB-j-KQ-;Xr(>L>{apzj@-DS7&bw9jyj!T7F&I%A~a{~x2-26-!9l3$ESU5=Q4*iBECG-S$%Ng1g(^1iZ9vG&;5edT)Q5(5aN z0eS_XUTQsT-#-BAzxXT+hNr4nmzTNC1Ija1Ymf7+wCk!mKt^U&59C5b8#d2-TZ@-t zQlj+y%9=&=W+XOB!mD+yEmmKQqm*fZI;lU-8y;S^|G3)I2F_U>X9GR9 z2Q;lBwL#~n6#^MmK*D54-8I&xyw-0R_?=luAthxCrYd;Eb$0c_$^vNNzL}qSd3o*i z1p;yKefLyBq7g8_QNJ_P`+@_<_krxR^kRwuOC5~&DY+q14WHtlO04AOSq%+sGa>Uk zwi_#n#M<}iwG*C9I1xgPe3|>`RcF*HpdB8D(F>6Ug`x2o4~aaTmt~H<#m+nka>HPl zt=fTIsW~6Q==Y1(U_l`_>}XVtynR%)Q*&g>*a@EtsD%0LVUMt6vg6KQC*J^h%b*bO zGgV+fnsWpAFbJ%Pm#9q!ZUZO1cd`=}t#>o&G)i)TFoP#vS$c-6$zald!I?m2@((f? zBuF`{yXwxh7&cxRZg#%V6Y3 zP05@Ay5JW~zdSYynEuZaY=4i+IQM{-J0iQv45cu?a^qlI&QJ!y9YpDkbfJb5G#a`S zVM8iDF;yPXe7*YFFm~H{Z3{2e35ecUwI4JCXSPQ3*#wXrZ?H#?*ky zCZ8rTVwUUU8wy#B5maOzOpzAe)U3`aHZ2G(Xeqy}VdM)GhYT}QgFy40Kwg9Knk18P z=zo>axL|yo-aRrP(TG5if@HT1HjCc_hTq*AmG$kTsDu>SOq(m*7t&}qnkCOkXI0r% zTQf2#{73`f-Uew@(!-de2c`6mr+6`Cej6~5c)v2-0w_}npsIhf{C`+pApcQ94rH_c zK*fJ`E5JS|p*Dcz{)d|Nj*m%e1*0Qz@dN@T%}*3C%mdOU=1QFs#VeuAH1I zqqUr%P_dG77=KBt}o4lbC8%{18GISHg&{k)x+jur3%}0uE=&+%HZ2OpvoBeLTiNvn2;sJ}^n1qwjNn&A0S@ii zJq;VRNCi@_mwup6lYn4Bbp*&!M?7(HL(CMiMFA*JSo%v4@!THGAhJ&^3i(02a;ug- z#Q3Kted=l-oV=_a3648A?Fb44)0{e~g29_KRDO7gONpwffLJitg32(WzxhXS!BhLF z#*LRMV*>Kvw%#Fi+Q&r;t*y+DhY#Jn^<@X}%&QG>C6cO>9@fEv;SL`*GiOC=GS*q| z+uQ=cFkit^6!X1cTH;n7mo&(cVgsyj1|B~jvqXMtYs@EW%Ow16`h;4t9 z$(AUw5aUka;Y)lQMx_lTJi=A9tD>rND-)K_Jt=a9N-FiTYsVoDixxj`I}rkkY;Avc zLsG~DsZ!*1?sY}pG;Cn8GTBdetAO#PO8@SDQl|x>oYVJbu1{P>W76~U)W(D1m@0D4 zkpWTGd=vXdX}2e+Cu$zzg2ylqbNKPK<#JAWJ)ls^npl{ajdI%tdnr_Ci7~MtuO6-v zRkYGp$RE5oRK@Q1on1zEnWXtV`&?bipaW(TAOL7~kiu%;Cf$-tz4zpa+_&%HMlK_ zy%LvM#Ya=%>-AFAVTd5MKZ~-gvf)z>uB(M>%|+WpW5T@$NN9V1`^+0?{^~oYNJb}< z{JucM`595;9L+ViThyCyWzEZxp^`*-#vVU%Hv3h z&CQ4<%-Qe$7I<4M3<6Wq95z#qeWb)Z%YW%AP-^n6m0Ca)e>C9e`mEOD@P3?vm_a?W zWBb8S5aRsmwBoP|(1@e*D5nQ61ZnM-*1I=huhXPv5NQUheEIAZ6aWF=%wXi&AlHh@B6n78ToX-b-s17OAM13)@;kP2ee9+8R4- z1kja7W#j3ly{oh9$~E1e74U$fKZ)T;S3z9|{?Q7_u{vmY&mJZzvE?|hf3&x`)dCwB zIr80IpwD@h0s_5|GF`rD<)S$S;vb9eyNu6&^A5JV*qV} zBMMusZ$E{ui)vv`)(KIYm_H^7#{rt@=62meKOW+XvFGLK1cdLcN= zmUTyXPQuuDmBb2~D#S?K`z?^@AsEb9F!{02t&wV;^!jlLPR#Ti^T$bC$L5=! zSkw-QzXz1Z)R|$y9l9ejhnn(WK;r^M5_Rxv>H>H$W7{=M8q>*{SHLhka$8*45xv7j z_P&OKQQud3{!-2xY4pF9Vl`uU%~$XKlU&Zi@cEVC@A-Eg!K-+aZ}gf<^oRL*1%!ML z{Wda!XTf2F>Z>;5F2T=c+ge;^oQUaPHJ)PUtYUI;XlaL;bsj}U=XZ#IXjH2*4M~tBn>4R~a&_ z>OHb&UXOEdYDBY&q?FMh?jT=E z9tp|4mr-xCu!&2+1VKafp8J^ zG11&B_X6fU#BRaV9qz^cA)aZR)^%Grc5AN;>xNRO_lAQtiNokL&_y--s>xnE-nDao zqsLse-Sn(5wfRZ5QX!=%kzs34UaUWk8zCT*?5)~I8q!IHn%T~lOL^#DyR!BT9 z+cbM7aor=jt=Pj&ssT}>()CR zD)wK#B09V?H&$$U@((S5;KMYvUbR42XvGSwMxgg+8SRQ{XT4}x$kBj_*2vRxx-LXG z^1;UnF-dW0 zd@Ex+Iw?MGG6&45+AQ?D78xy_FD4xZ79GZ^$^B#L3zJ9Ubg$hXZMPvmknp*cS&QA? zE2j#CGn3xFr(i$1wPB{xQ5ng2}sinlK9W%P=5C%TF@}spJWgTBy z@?yUMeGz z(UlcjY-NKFm*RuS%zn$_@#*c*G`L%3{q*x^QxcoF`wh*_aQMU^QhMj5TlNiSY&$Q7 z#;dDond159MhjE=1zbg&t{5JUZneYDp3iLjeA{|xnOWOFGQVJKHy{w}7G5{^wtw6k zVsoCCw%T}k*e(xg8h{gn9IQUAHoiSvd5&t*!p45 z`JA-m+9nK+Kq9N&FK;;)9$yYzdD`7WD9_xUlTKX)?&|&N+2Yx@Dc26I14lKfu28k$ zMDxP^=zVcUoM z4b|0kPwXmVg^uB|R3UctDOce3vvan?+K&B|Bh+W5=iAv2K7K)9y=CpCnTQeo;ubpW z`!1}=qDTBQtxPuv4RkULrb9_+-}x>^OJ!)A3#4D1Qevh%MOdK!e32g<8BM@MO-hFb z(hjta2Nw3N^UNr_k4RkOrXEE4XE;`#Ccy}0@;=)ZJ%|QUX+TMzyuf{hO54z1Yy7%M z6hv4(xsqT57T`^%@1Y$o;NfNQYr+6xBto&ot}-0vs=1#(E4CS5;k3dzTJNMnn>!Ph zZv{zc#)R!sU@KszZ#=mQ)Cr5Y;mOOtR}81`ww>Wt8R2GEuD+l*9z@o>V(7iY=^=jf zoV%4j1akkIfEXb3Ycd5uEqTseof)OH<%^1*+n-xr@hg@1Y69!@o&{-zMM!r`o#}Bh z@-wa{-Gz9i?@YrjrgGxt$$V@5O!=JzAWM;R7q82E0yxWY7=Zcn(d`dGFPfH|TO~fC zD=AVtdVcI!6o}W51aY(b{eS^g=d}cvKU$BGQ$&l0Rj627!>`+YrbmVNuYS5En}s!* zKfuP3vq`cv7~2d4JtD1qZ%|D>#*kmKSM9))i1$dwumKuEFcX^}M9rLV{|2R4M~7qc zwbF}fs944$S=kpJ{Zz)ZChk`U3>(B?J+#-tp?axQSBXot{K42hRl9v0p;j>;@nuLf ze|41fDN;ZZ(zN4uSZI7Xm39e;T(~5-_x+D=Jd+l!rok<=zJr}VGftfmA8UbGmXDCU zp%!^60%+-^PO)CoTyj5yJofK``QP1JawcYY%O3=}--LI)+~Qr%zGyc9B3g8>YZ(p3Pv$$Y_PaR|OMG=sgadL)bf$u{ z)k4ZxTq#=;CoTr$>d`>M)`I_dvD4sR>$#mFGx|k7`#BXq()!zT-%w?>^c3*py~77Z z4y&(N$lWAw3d)U^k?&%Ti|GU10uis3zWdzISG1V38lE1snpFj>|3yYE`P$yZyO`)@2GXmj)^ z(Sq_YYanL;@h#KkFRGFydv;Q=rff6cO;8O;D0r_8xY}efz>*7O=^#8d1nd-l7|NEQo6 z{_X&3TG|B{64cXS`@?hs&3OmAz4CjJb`^mYoSy4-^*+LRh>Sqt=ta6t>LKgk2axEG2|%gzpG91cy*$8=F6oq{MOI*g2JzjJ+* z)?|{15zETz>UlMxDdGOb2{S!O17&cVi5IcB8;bH5lj*7j60Ay=qs!OpAwTrh&_P9? z6;K7~P*p}{k zFDmlKsW-kvEfEJXOz=IGU+aiLd9N2O$O~279|&#`PU+z8>XDMuSAj6;0P=v^lSNLi zB5oagVbJToiGHhOzxe$ki*J+PwoVWTXVv&AA;wS9ljRadK ztEYpzLOegEu#E|Q7^&3zS;?g2_S}%v-AE8vb<%oM55A$F$fC!idP~;Kg85dWT?-kV2xt9fcEpOxx;4;4tpt=-G=kjRCjL3l!|qGeHC_Jp%|H ztUgJM*T8Iz>2Qd??;Y-8^lRT|VI~OIryL6c{6VWE%)t_xz&-NHdb*OO&1dta9MJ(D z@>zh57@TJbLwZd_`%Pf1?iaD02Imp&8qv3N*{ARO2imysCK7wSP#E)S{*{j@l4TIt zTIK2EQ7yCvt$Uk!*k1J(Kv{Fe4H6v2G z2Um|9tHx;V=@`szg~eAaaZ8z3u_d|k*d^RJ4_$``04r=N*YOZ5(0+S%mBt$NJQ=p`G^uCIDHTICDW4P^GepWb(n z8oce*i&U<^^j^t)+qit%fsk%q*gC+-WpWcV=&c8Cq`toXLuP@%INpaiL1>jiQh)oF zLn_`;oWe&aJh3V}W!vOg#rvvO-&DN2Ivf4PYN^L=adB>*9>6}jh{LhBUy67;9~(Os zZ{zKY?`*;Nb&qd*xOv%Fl%%Z!cWdKoddV_aZ_uwX(uXLoxVvRv6&s)`A^Z%&A29dQ zvtM0jb>7vksn%n35D9$o^>F-j3@1z4X!Xh)p56R;8fv~jzx~SY^5rKyJi8*A6(Yl- zIomOvqrru|bGEAYRc}%4nxH(?V5&B#in;t!q&$G9qfot2Ye{`*;^yV#bn@NAv35LJ z{BHWHCdx^y;H3IRtZMoSuMhSV#CuBLY~f~S4yJC!@}>-Um-A-loFMQH9@=YDa-HuY zpzrQ?g^f%=&%(`tl@(V)BobIG$xYBTOhE3%93#RikF?%BAt7naE_an?z1hm$f+c>d zWmnwIwF9~FEnUI1%u8i88(fU`MKw+4x0x4aZr;Jd?r$1L$ZKw=$%GUdS?)wN$`}^9-&-Nltv5hASso9IV;bQD6*UmHWwxOtpFwd1XGF)>41&0=(8V ztw=&%WTchoL!rIdcVr#_T3doScLOLsVMfUCjSR{Y3iNVA*Wx0}vO!$$*-H#qUWMaJa{l@F% zXAjJSr9_Q%yMxWzr?|BqmS%qLH`b5nbKKCFshWOXsbNx^_Ou5xxS$;Lx#|YUzxOWl zCrd2!Q~-2SqyserwX`ikTB^CAPpL6JdT|;z8GA87*sb^cybZZvNEfsR>BC1aI&F|a zTZS$??^?Pg+~jh&PMM%VCMU-Cwm6zj5c0=_allDH?%d!Pj@&FY^Ud z`O1p-S5w=13Co}(>b#NdFq$lN4+maxr`W9I0!;i`2iCkC+G!c;2Oyl*7fN>?jR@aA z;Mem$N;}zG2riF49pH9*^W^bEbTy6aNhB~YF!8}>cxS~dP>%2UVl59dmBU((5_i>^ z`a_9Y7QjbT-@=z8E$7eVP86siXLu-Mf>4VljKqLb4e#+*3?Y~H^4M4iPpGI&jE~oUb0Ld&b=<$9%Jt&25h~#kHnH=UJitysGybT9I^3 zumt9$uXd&}Hsw_hcfT?!`|obv3Vc4}G&cIl zqQ6x3t2A}nJE7;gI4=E_n_-Ht>=V*$$Qk*u{NJ^VW`4qumLXgSDGz#3Au#sxIoG0) zO2U07{2V=Ed5YJ0T?uo7tre#jYU6E_pGf9zr>gsKc}igcaot<){%>@Oij){mv2xP! zIZpT%&u0#`%nCE;D9Z94_dQDpsy1DN*s+sEMsPU3#p8cNcBnY|0t2lTn$;GKEhV-U7#ztV&HP_c=0ItO>s4fsqB#2_Ex5NMTqUtPya(Vv@137;|dL$2{yw7qQX zj6(+&qf6`YNWM8CJ;a@KwV=Ep$*8AP??BA)V&ECsCq_)dNHl5B>HgLkn`ddlflnjR zOcR-WKMgVBJdJNqzK{L3Y{t>WBUhrUAl&MSas+?t5nrs5Kg-)uAt+l*`VG(UUw~!d zo!f%X@qD9~kYPxHGDJyftBvz)h4==peVovN-MJvmsxz`w!azmL^_2j_pl zS4vAdpwO+%+AqYIR`Ldblq4Gej4}TN{~w_WAs*&+bp81nD5?O!pnPNT{~iYXJ*;Oy zjd~P#m-|IR`~$`fca1jMugL1XsAlR8g{^>f4W@AeIg}bY5LOW*v5X82(@&Mwro+c# z<=Vs7#z=kcsoqj1ArVW__|V2jERDo$sj5bxCCbA(_>#?@!67qn3l=l6nzgkd{1;-i ziF~;*`pUQJRoF1fJppN`)pcqDHaXZRX*uV~} zYAqC<7>N-So}Jnvm1?N2cizp)WyxDuKakAMutL}iZrI({)m!{-QdR5uY1QNUrCSM~ z`#$B?rnvMqP0=`4O~qNgG71X(7*zjO@Sb&OVPu)SejCcNK0FawRYT^~Q$TE>>t3Gw zFzj8=G}S-Jh1T@AAp1Y)x(*nRhY1c1L&$KCd1 zx_%cCi^cjyHxo*dTGs>3$Y1Z-@&>aSPjV->RJ1EMQ3KeR#Le;k;4Y=9@SEl!){nDV zArj5MV;=XbENNECfOL&PifaRDnHg?Kryz%vgqwJfge(C+^Gh7@1@3dtr zAQ>M1e|UTAxGK9fT6BR*NeL(|h$sk)5|C5`326}lkrL_dPNk$v8Wu`-N;gP%3ybcq zMdzIhzrDY2?{n_&oZr3oT>cSW*P3t7ImUR#^E}oihG(UDU#ou~vQt|S=^D(9$%F{a zkyfs9duOevV-dqpA@0IK20+pIsi4f39K$K~N+p~Y(O566)%%nQ{?tY~G{8NrVI_vc zAL>PzyO4Cq6X6xKSswI*p+&q(KGsoD<(~amkdIh;t;txBiJ>9f_esd_VI9F@Rp|w7 zJ`{qA$VKkRye!=iX`*djL5WYJwqI@*)eqsc7IJ_XV|Z<`$!N*AAFryxYZrJC)2j#t zMw$>2!Ed^SdR3awDsd&1w7Y%jSRNK&584_xVYQ2&RYvN>#X^HC=Z5UF2ZqW_K>09G zD+2pt5qc}*OD(Zcrq&UKX6zOp6k1#l4#^v>yM$QEEAJysGKxOk^wMo8t`8>B{TY_b zm&bgYpM_iy?IqzfzuJACX~kmGXy{LPSPHz9!8|KUnlmlAGs)F;@>7e5^dteTr3u_d zO4^_bv-^|Syu)*T2L*!{36;Hcyr+AkZL7JTI-n0#*iZmfiYQIg-EAks_f?br_`bPY z-?+W#PRjDOyVayi!)?uh0vm z8kV)D7qu%%fQam;h&-4yJp%7nNl~t#X63m;$3PZS4bHy7;}yR4*7~ z+?d(a4&hu-r>Ziss$uCjwY4{=KXA4$lxD>3Y<}^jV&n31ZEl633Z6UOak;=w{EV*{ zzWmP4$ig8#artECV{S$DU?*ZrF&l6U$^{2KtDm@oV}?vPofH%~&&aaTJ*vx!xko4X z*N&R`WclQpJ|*-kvYSQs=oSO5A2bUvbyL&|G7V>!C+4(~ zjGxRBi_2|B@|9AR1I-9@F!yyjd9Z1qSe_8bPu13(KlX;Cwty8KY=miY;l* zoy_g7X;1yWx&?E6(6!-Htb~{yZ&bC)4hQ#e8QjE+*{6-l{*-x~Ym83G&tPUIHfZ2R zs*$NT=@5JMFd|i~c)?qHoUofXHS~cL@KTQetyis7wb?YE$<4#sKncW&g@q?gtgP|! z+V(K5Td*6Dpk?|WkZVdZ-EmDxEFBEe?Ug00nvC-rf zUqBKPOrE125srr%;?GBKKmGnq-PsRnt|d6uzo(!WwU-@2(RxP+LV%!T=PZFLe>A(i^R zOw6E1+xOaa?6-ItHORlAKY{N`3rP>CtQ-`q*dY@D!H+CCH= z^08dgt<_cd^~PCkVnLDf)=HsbpaDE_?6TT1#!44f;JHCr_M4KjBDaZ^0XCZCe33>zp^;r8WD4$k_ zQ1Sl0=2BRMD*@S>=;IQ&pE<9pWZ3@CZvl`uifcA)h+jMzhxqHMz7z4-FE?(N&mFTUsd1>f5 zG~aYWi@J6Ds4yCN?vbG|}CXnSO`8vmkf-$G(GtrT&@XFYHRWuJ7@ zv{JgHn9p@3rR{`r#ZNpiXvx|PKguQo*70{SH>Y+g4215Q?3ta4TX6iLRo?~ae|(|2 zGx}2tmE$0Rdj3(&0d|u=J0Kp1p8#=wi}kIbNZ5FCKRiIY&AH@1M`p+InUzISZnVE?boiB3F`3m{ zeh0aY1*V4Ae$l_v;@(gfE_;(gnu=(pF(JP5vrY?$Bc7NweaCjA1yvXB?hviPq=5hn zse9$V+GjyzaiZq6uhOfWPQ4(sxYeWxrz|d+P6u$nZvPkZ{)Db!?|xv*?=i8$IK+x zYzqXX>x!!eqK$GkC=SG)SJe)E_yC_6SDk*rUDw9Da^JXg2?Tzf#3ltn>{`y~r(&t? z2=RJ%NzK+yn*Pv|(d|ySmdS# zeBsgEED9ptr4^+=`&7qxHx|K`RIl-KXDxdjkFCqKMpZ4HvOy}N;cB1f zJ-mExM3f3QLBGpY?>Kgh>WpaS<7v`kQ(qurIvM4j+E*PNDiRw8j_fT>jaX_~n3N&T zmbVe4lrFnQw29{BwU*-_^lBpSo0fhs0ycqds+?y_hT*;OD_f*2o(-20F15AQPFrY` z8kxhyqh)rsr6Z%IxTh!ItLjGLvsp|i5BHpNn!Vi|?v>#>)%0vhXqjr7;Vlkl53ha$0^pD!fvFz3WzjzLIYJ8$pF5T07p zP~^9tZ3*tMw{zo}hV**j9|Yry7isl1#+HTp=l=?cF9d$g!}Prfk=Mh$4Z7AuiMZ0} zckEL`mM`O_MEu>Ypm zPKroY{ufJrbLkwoEEig%k#FfVk)HeNLDYuy`4gJr+SEGtfla5gpTuAAV-^2R+Vhm= zD*Myj?kN_!s8pSMKtKp)bJnh38%8ekLdw~0Eqgq#8rO@pn#N+GGCb$K_?_=N-Vu6} z9oa!KdT+=?OWq(aPI>aT`U`fXH4SA z0^SLGXYo@rcbhEs7s8LQ8J5|O$`Ui%l@LppXa4ENqE*~sklp&ROv4}_T>W=g@HEtE z<1q!S@qkI~j)UCMeBX$IFEPgvo1P%X#m(|n7ENf%xs&3(XElPG$GWwHD*H0qcKoG} zwqmwM^ksj8N84n7W%ff&Z8e-6bUkZW0B1HFJvD9Xygf>YZj?I1+BPt7(9<)jbF0N2tQwRt6L&87ULR}!fb)GkEnJkir7j8 zXOyjJqPh7!5m-!0L|qKh`Pz_ze!22aKtik--V(bZUj@&BeHm=aiLa!1vzbX*zj%W^ zAy?Pr-Bm*K35YOUW(=3|viDlrKEU{)2Oxv(S(?~mWQ;VK9!QaQg{JlB?`ZqJu`G>Y zDS!y!>x6Dsic35}pXW@ge1@2$xrw?Gm!FKAA{hWVU}bc>x& zEwBymeLE`2mKmSp<{$5#Yjq~28YNB$C;IeRHvN~=raeOKf@gd6sd^fRqB;nW;T&*5X3!N_4zSNmbn z#<3s?L7=YZ^Hfn+ zTKAjdjo);lx{si_TfsBJ`}CcP=6|02I)tUX7c6_nE-pAX;3?N)w@fLaYT^-{*N-;6 zucz>E-{%bO2Z3;Oy2q9DbTh~R*RTP@+nE;FhyA#b^nAxs&HbZCzM%)1gSTUue+LoM zC(AXpNB%;EWRSgqM0a%ZPsSY^D77b2uWnhV>)zAd9O73{5e@jaZ2!Et>))#Vog1nn zVH`yqKE?5+FDLZ6U&UD5Q+@k#B?~#Z{fTOeunp{^l|WeiUV`Vg2UjYY$)dG|h{Jb| zV^6iWlf#TR+r=_bIeMJV&e0974AA1O;r&-CUz-qAiu_}mwsV_{BJe%+0`eRHML(7Y zK&75@l<+aR?MD96Ta@0G#;&)-Zhwju@<{HPQQ7(ztnDHG;?lu5d0D&lp`KFn{)-#< zcgLYsA-A^&W_9Q^qi3L~LbADkO&1uWw$CGeXVJeFg=P^*f1&W_+q9KH(p=mo&KRo38SL$;#D%z(sl%eVcByjvRivIO{o@ zqu{W89aE-m+m7m-0~?*jm8 z&^es$7sSHCB0U?Wq`Kz|tNPmOj_~Nq1=MuX*rd$!9cx0Hk3?$n95x&e8(&A3HF#Ch ze$4`z?ujDc=$hWunjceT@xla|LS4|j`BoZu#=_!nv&9q9lZ<$jl$lc6J;rw&)~fiuDi zx0E7&26`?(u=FUK#?zhPe@Oec>fW}Klte8x$o;h_vp7Hv<5y4~T>c~iHRYDOrRS8 z1Jyso?f>$sfMM~0w*^?e1T=1d-;oX)9MA#-3~HT5X7$f8fnn*Nf;jjNzmopOipeCa zwe*}RTb39zUo?o~V2m%K-z6gZVoWDr7sMpak<3V67ymUMGb=9eiot)QlvZtwb6WLA z8c?cleCQa+!~LUhyEHC8U*>uyl$chHRXMo@EDs$Nxh&AleIEfkyGTXbvnVQo-zu>h z6AoR1&0x7vUfkzPm{K50JUX&H%u7j9GVEKoMklP}`=FtpL#aMYnwNu;c-}QBV`gn4 z3qST~N|@YwXR!G6w?-ysS*2GHrIAnEIe29$Aqq1ON?psbL* z9XqewhcQ+!jhoBkvrDJ9en|dtaUg+BBZ=~8y#iRk39$ll7@)uyz#FMUo|Qu)hz5B{ z*vkQh7h?0l;%8C|lh-4)*0VmLd8Pr$(QkF!M0w_BvtL^Vq_c=gEtHck4QQeiGVNji z)^X3Sa80Dcy6m&we+RCOq)(1{KP0NZSFTn_g!B#IzzfIy3`K}uQ=l0{q6N*<5xrjc z08AH^S+Rm>$;H``{{AbCw0ODSr7K11x&3rz%1g7rM$3Gl!4CLf1FOx+b7-1 z_DdBf|SRg?Tw)}{0Ue9+*BRvr0;cKv-GT#0LS21>|9K zGOJ3j7&8yuD+AiKz_@BgK9GX1Jt4=}o{(RteFish4>D2RoXKS5!1h^Ovf}C%bl8v)D7|}UeEx{s?jCBS1Er*;!<8km!W^j4Bcc~2#oToT zw!f(+HB}PExMW=mcq?t_G@e}4ERHPogU_Q^In^LGSw~n1j|~55C9&4}m)T8kCw^AD zDR}UPWQVadn~+2@b(-=DkQp(He!V5AU=F3lg}BeB>DKDdS^WBKRrB@DcOcu$3WuV9 zyqU|SV-f#Y^R+(NaV^#7jGdPd_vcT(0v(T7ICAlpsj;q0<$G_<-h zYes{S|MDCF5(u^n-Z-@!d|FFkgxaRq(y( z$}iV$5OvS~vV0bg*8GMH0VxC$S!I962RKXcZ=ty_b4$=`eqWo}pGuPR`RnI55dGj5__Uxen;b?_A0 z`IG{&zbLS^A2q=*pHEb~**c3x6<4I~No>8fP$Pjt&zO;wWmviBSoyAF0c)S)TCcxe zE1Uc4ZDsFyCSwW!GB%jdk%bAHd=PU1Jf?oe8kPwicJ<6uWI{6GeK-+;_HAC`C25&&p4#({aZplV!R{`MR zXsIP8gi!x+Y>d4t+!h0P7HJElz`e41R>+veP@a`yLd%aAN}d8qqS3R3W3#JU@jqhY zY${?3o;K$&wLkn{0od0)3IzXwhT*G=w_wj~$!=l-=>LHFpH2*-6ti*f{*i?J96Rq# z@J<8wMRXW9#@ilqHMTy^!6Gi2_QGBq>>e`wmxg5xk&kR1YTgV24vgf?+)VFz$2)bJ zGT8KwE3wnaP(IGB#$;z#ZdTq&Hp_qlp!`4_KgBv{SGKpIJ(h&LDCw*ok-2?wNp(w8 z0yt=jIDq*BIA~sm=$PY7%C<_(>uIn^^TRDDJ0;+G52T{5=mewtI55JXfnT_#lc_t3 zxG}<^n2j4hC0`SG8{9+Jbo>y^-T4PuKQ&!j`V7VPE@O^yP3^0HHy*i;COoNsTWj-W z@2Sq3x(P|%!$)aQj6KoEMl>(i;wtaX^g+~uktB2@ZfC1%d#cKAJIzQ=J@f%dJXK7i zv{K5Kr@gq^$u5&rX4xO2QcF`(Y(Gf`3lKf9u0VdPiss?nsEdF89ZS@DJO@ zf8~1ojn)6*(*A#C4bi-ITYL8WPb@8eBXZ!|{+C%j02{dD{^ecqCjE*8@VxT>ljC;A z0Sw^3a##Kj_+hRs=jX?*0?eD#>j$G6b*l{E^2N@oOrMTOD`|Q^75n)E>9GIj$ylN3 zDE6>D0UTrBI*U#3&7Lo^nRdqaJu!~1>lUMZG2ov5Z<+G{Z;1=&RmG)t3kQvcAWz;0pZz~|N2Z(up+AYXMsiikOf9k~e~qn_h3a)sFarB^ zI!uUAiO_VivRVJdt?!{Ah@~yEjGJQcv10>#+Ww)V6plVYFL!%DY>TN%xy|~$=LvcP-govU0t$Z{ZF{i zXT9RsC~Mxr?4s~sso*D%`+p4&U1j!_f7cHMPv8r+)F6Gxn}|@s8g=jhsD4qv$wk>| zcWK4-k>f?6=H(VZLcB^f-$(wyi2oif_-yxGY`0QBzN=h4+=-T(HPrau1Of7c^^(?M2ce(j4Yei#Gji$icl1*O=?UXEB9{8<3Coavx@t zAreoqAf8>XFZtr;g4K??W!uOB%(na_B=^^Na1K zczRz*0KI>CJeZ!ia`x}wbkvT^-OWiVTfaK1v%ivt4=FSk`8xwFeUO3Fx5z308C3*>5n1-CUQZ+{XbUQ48Vz66wJ()f> z-XX8sb>lx?r=nsPxYD@XNW3(=T3=Zl>UERinuhic6QbVJ9@YDs< z`ly@Ml}C0CS$$KP##P|KfyULLhu9A5<)OgUf!j%on4aGGal?9DVeO@W+gXE1#Qo}; ztCp&$Z%Aj98E!f3_1sFU zvL`jig8PRitD}l_7H8dV7c6c^HS<+<`vT`>-SeQ%-~pb7%E`!NgUXfd_T^@8-EqMc z&xwjgo!$8qm0SL(+i}M$i2c6izF8fjVRIhuMft_JfO4q%XCJfet1TD%)#K!bMwW{X zCH4ETm3|*HDdID)VBA_n4Ij(Fv?F3(sjgy=F_2g`>tJQRY})Y*{eq9`0)J-F2hVkV zdc$p}G271UYUbw@(6{ge?03EJlFwS}cCxP)))Tj{b}t*81X5UBj^K5OHz$kv6m=y> zlXwEH`vUfh>vgB&*><`S$oDzq4-OhyKZwf{Vq>XwJbDDNFMQyJC{bEXth?)CzI?k| zL)9KLi0Va(-PVLIS^mY_`R3rMb zmt*8^=Xdy>*AL9gwYsuVqpcMOlQ!YqXAedVTw9gq*4y3SOf(Y<~y=n6KvJ;a&bsF;0$BR1FDA8b+@7 zU3V1sw|urK-L@E6>YKKouTZkHu-eUd5u4s{IcoTwav^q9cjPh8SGGN2;EZrn)wpP3 z41Qt1bN~5eg9rWT&f%m|jF{f6Yu5YY38U%r*1DhO=QFu@Xpq)m-Tcd=Dc7h*J&hA6 z1Ti+q<5e|%JR)$}GU;=)?PiVL3OYjfS8X2zQ`OoDoE8UbRGiWD#XJJ=hvBb~BCr6f zu0`aFgB!eax$U}qeA{jtg8k}nlMiB!4QXYy4X3yPao%qb3!drmXQ|`nJ&vw8x;-#j zSF&eRM^o!;QD}}HBw(*~)o@$G;lOJ!DUF{O&3!&ou4%?;)^5rvb+;pcCr`@}8^YqE z?6?`_c3@I6JNqv$z^LoydcOJ_R4`TlmDre3NldJM_Vg9}BhTxo&mlyWVp>o~bf(<+k7NucC5xULJNztaCZ9@!)#l3_^ZzycZ;@svF7Z z4eMr?GpSW9lmgY-{HGn0EEC?Y`9~P{56@UB9Qe=YYiiE+BdWSSn(uXm+Y~f>teXePo4T}DL{4`wa)FYc9$%dD=RE+$1%N^6GB>-xDyVm%|31i>{l;O=Rg5Pf$qA~ zxudIvl^VRO>Z4?qi-EEa6Twp_7hFM(Zitw=!Q->5W~GyPyxJo=vs#O9Lh}N|Zr&H? z#BRJ!%a>Gu7u7!3Kfkehn_W5^^|3*bEVVmXe;<~VP}Qq zYKcAZqT+P=vd--|UEsK%a*OdQX2^aOy`AcE_F^j7^upxoc>BEToKd6lY>;ZwZKpxw z;y`wCQ2?QSs?>VbK25lu@4STWwx@TcVOH;Qvh0@E@Ou<$uEce^3NuuKC{)f~yw#zgWS4AnkvG z^Zz!k|BD%g{xguk`mbFB^!~rO>%UWS|NjY2AW0lDQvm2p|GqZ=b<)Z7Vcw-3?D08q zk(rD|Nlut9d!O{l-e+a}UX4)NY1jVa$oDJCTaFca6|%V?{~Q!4!(>vJA&HE#5lFCs z;6Rt1IbUzYWI1!1_~J7ZA}8T%f+k1Q*%`~gT5b3tZSnXq)z6Z2jCa`iuPGk%s#4BX zT@rp1dN?ZC>ee7$1Q}yj0#&X_)bEXLjODLdUT2ZYzre&va4$>ZxGnume|^jPb||&( zqSf$q+JEAw=&$%$k$-jtW9<4J{H5(xY>KP`b`$^Q_fDN!Q^)34Y?#uM-H(Nct!^EV zu&j4rRbkNWY^1y3b{LVz)<4b3Fw=J?OAkj6VFj&5Ax(Q<>RrY;Ut#=c{VT>J>m?dQ zj`*NLcFAaKJ!xsIrqJaMk$$B@cz4hW2V__dOM?Wd+t8+;l<RqZA}@vd(>OuBwdiX zT7#q1<05T70FMPhu&TUp`EK)agC1Pm_OQy*8Zf{TP{KN+~~z zEuh05h^${;o8f|TL?U)|%0^pu{-4aNl~pERtP(fRSXb2+x%N>KiI~+X z!};$A*e%)@m)iER_$9fO7h3c&`hm|@6cyP#B`F!vr`p=4uom-4G#w@1>{%GLK8h_V z@!0xK&$~H%dT1bLeKg7y>>ZfLlD`#yS0sHhgY$^bLp>dy=wj2=J|bb2uR`Q8xY^Po zS4R(q|5;cx4l_*QhAWe+TiNATOiXOwOQ;bwv5rAE>dc0xU-V~eN*^5ATiN?14Vn&( z9P)W2t=!KUHH>TZnA5J}sopPcYU;`0JF7{e_bW~q9=6rn{rsGZdvZ)aQTpnq+tAc@ z4^L&;H1MLujN%GmOePuTkbbLEpFhD@@0ZSgq$}RY9NBx9%O>^L(K)wXJqZL~h+CWh zg2A%G)BWI}=3R)VCLupMq@IR_b`F$&_-^=#K$r-uVuT{5$1*e+s3n%*0JZ0(I;fD$^zEfcy;ACeFDKjW20bKNge6#z0Nv#BUlt3^ zYj`AD!tXc(Z$N5nc3*`Mz4(35wWHkLU@s2|Amo&O0Esnag|y|l*tkCA==B+Gx0oa_}=spZzRu4-GJh!yxIE;uPGGsU1I}j>jcAFd+^LqH}pqWMswe>sBY# zslqXSU|q}Tu?>t~C;_NR`jz*VNfo;w)VuM~;lhpd-Jfv?-3^jx1XoT;>vu3(+}mQq zd|dgR>l2?UD5c%rSaM^ovkxtd7tbR3;7txXjCutT7bEJIoOElAU;?>x_3nbO;>^b_ zSHvug@n*5ELI{2w3V|4I-OKDjZRtm$T+o!Zrwk<=nsdTmXqJOCZ$0TYnB&p3?Y^aM zx0%fN!=S||3!`vZCrS5K=)=cySfJ8^0a|?#ZTB+twkmsp!-ivpE&~Omk6wZ~I7PFC zvC-d#1Q5bkoKHQlhK!)}y)*)^Ur5{#kU}6PUdl_eIBptM;{Vj{_WN3&UYmGMA4Cw_ ztQp@=OLj?>R#Dq-tS}-?_nkt#DSEGRJv%csu2k!+F)tetASx(SOfN+*-N@ZJ$l9S# z=J`Z2+5CKaj#lA^Os8K)-<~s*9f$b0Zs7s#*AtNu7&KxxMP^?W>v)mgkdv!tZ@qdc zAls-vthz+=UDHi+x_0>v|`+dbB95&$QL!L6Vp@>?yaai>fVv$sbtXKuXV{f67?czI(`SzcbVDj}QN27<#uFWZ{vY z*OiF0(H8Ts%bVQ0)?d0HNDx?-O!gngrg;ll#KV(0;sPG$1LJpidr525aa8x$zFip3 zTg=W|)a+(?uEo*r8Q{`%IX~W2JGyphDkG0I=WvRl zKRLy1irT4qyJqgTKG-*80BJhc4?>{G9l?H11MznsDrwBiEG3$;sw3?g(@`NZ?{tI^ zC;i&TbCSYj5J(7iFP9Dk(sqNTeD!=S6)yEW|C7UQ7DoO!cD*l4Xr)5x)tWT)1Y&xk zR>o+(!SXsU>Jp?#fAA?G{jXg!5ke3QbC%uSO~hQYN{65~#sejd37dST0776SbVu_( z2wTTvS1*;0{Ouh+q3ULe8RPcK@=IIYglA|)SCoHbYT69H@tqL>>Z$gBbfT4 zzL7`G)=VP!A0Cj`nv!QFRbhHSEv=Ocou>_-Bz=D`NAR0Tfq?d53L(HU<}r~irjn63 zqwGX-_(bd}ka~h?TmIgWM`JSY@5Me%FDD`iG>M4XAlm!Ir66bbYIKNJaOi^8R$A@O zEgRnR!l5!LP@iK^yhp%gpsf((8>+;bim}hyt_|}aFewZ`dqYlqOO~JoCcReJB2Q^Z z)XR+@h0w`G_d~5GsVUFO<4)5wEAlcky%SOT{zt$y*(q9MZUSfH6ybd3C=#co6mu(R z-ZAKhfugWajTO@8B2qk0p-<65D(&3rPcJ1iw(p5My~-PzS2Ce}ZrnSn2aw^rlt}X5 zOd>?u>>ViX-jSM>dAZq@agFC%ki9lG;9P<7wL#L-W~Q;L?(|H^#8TR)G2i~O*5Yfn z>PO$E_=|aa&cDh!&!6-rF~h7WLE&l zuJpBZN?a6)npY1yI$AW%klrReJ|j4tM-qLdQ}^PMYZ<*v**asK7(h9^n=O`B`Rw$5 zm$Qy0o8JZc_ji{7s^a6%DJ`8QB@#LMSfdCq91$J7I~NJ}^n830lIUeh6=VN}ku>Sf z0J!S5)q6waksSEJ1yRoBTvF@8>l#^XYjyEmiAbcM@4bpT-wLtF_Qx8Y%AVpwLzDRe z4dka651L%rj)oihTP$7HQ>M3V9XPS*T~$(!DcxJT#vy1zOJ~UPRz{>&QYIN&$-94Mtug&ExLP0 zm#18kGyBOW!nPcpWLMrl!9z*Z)U*aqZyq8-Lf7v3 zcJc#&b}L;5z;UhGy66nGU+9`3>{++N{KIqmH@VmXl1VoJn#R$fpfDLC8*F{xxh48% zsn{+0B=E7(ygyN%;|ZdP$Q?f@iWat$6e1$mQv|>s39W)Vg*$$uFDf3Sy8Z^s*PHJ1 z4voJTd|0-ee?;TY2#eD~zD&J+PmoHT`6)#_Yn4r;E{W(fK58{RK7CEtnh{6qismnHmF?fdN#@xtfUeeDIY91)_fR zN$HUTk#>N$AiifshA%(4Ms+loP81=TJ*j}|TROkT%bKjUXoz^1$Da6tVcZb)8F3i< zOd#ts!Fs;y=^kmiJ~4`YX*)>};M%x>7P=s>>Y z7|=lUd08Rldzy!+cU?W_xf=;*-f{WfXf1ljvrnMmG%ML=)sc1sMGM;d#2o^m=)EIx z4>T*zFQTN&sxmUPT=}IbSzh{(L!Z>5vslHsx~hKOwT0x4g7iG(r5OsubCeSHN>m;V z6$R2}&;uc%GmI62a7=!Lgs7FeOnxh*u#~WZ;Ci!PZq%wzE{|cvi|KYMsg^xT333~5 zUf_wJw&K!049kxgjAye=e*Q88^*Yk5yCb0q!ESkBKFAs%IP#9bp-C)PSu{2Bu~fDA zn}rFs9O_gaX@0sc^__{6onIW?_R@DB99ByWF-@k;jm zSoV=f+GoBTwKh_%0F-<~%Q^HX5J>0Sz7O*XKu6^T9eh2Nq*(U8al|{E_LA_`fztY9 z+z(z8pmQW+i)N!KJuG7Ij+|{#hUxv7Z#J%$COZ*)df!Gw!TX~fS5iQK+pc_LC)RRY zT4Eo+?2T4g2n0h5`+biZpH5gFNacJ3apzBt9|_ZBL!9w*GW?id4C}%x4vt?$v)^L)-^xLBlAyvERu>Dpp6x4jc_SSl_fzmn0+7NrgbL;J2koc=kC>1SL>Svv3 zV8ZmyYqMqE6)tfJAFI^lEA5mT#U}}DqLpl-?jV7Lnz%&;V=I5-h|0)%InUazPt^P^ zO*6WP1M6+9h-R$pc~gfz5iLicsKBTHHRKE`f(E>e^wN|l<_0BaaJ3}DStSg}M5El? z+sagBJEcVWrRh2xUN_PbOZA2ey(%--%}kPn zR6`M=sa31{-*yQJu?F(Ytkko0c!ClPrt+*EV$V-bu?dlz88C03KHE0%(|zwM%1w6FZg-_^jJ3ysJ;;yKwDBp{r);o5K%7L+flQQC z+JjZcfJm3sB?>jL@wx~IF?*Xqp4n3s5L(2f7aL$r3%M1k=@U)%UFkhQ&#vfm>0;No zyeElD=1xK1?#;pS5;G4#k_a;XAoRX$I@u=35d18R-m@?L6*5lt6p1F^t+J7!%ZY~f ze|YBjOy-@9!ml}Q&%SOXwrZJv{5?t(q~2#Zj7|dJ{mvEu?0=v@j+{T&|3vO!Z}^pze+Jz}eQ!+qBH@f6Fd-7EvfCZMqN`GM!|p)Rn2cXj3+zME9{5GX-TVrtBOe3Wd~Vt=lF;IgR4SFVyStMCdI!k~$ncJ-7J z{vzyP=2OAXsisC;rztNK&6C>Pgrs{#Fe=(-(IK%ZJP#oC?Uj#T=*>e5ar7=-o=y)> zQn~5u%Bkht;9$*}wfyx7qu!p&H|vQKF6aq3F~_74OelQmoo@GlWtUILUas7qIe23D zYfa@JR)$oB9CS1v$E0PlPg7o%(F9WrT7rr~9>#OW{JYW$Lz8`+oZ|R40={bUpt&*S zg?~42O;e7t*>vy7Kg%!SKfnncL`8%8OU1~mVu1>BaM&`5pSEz+vX%kGV-A1*QQ1BI zBAh{s&B&}VHgYBhr&W zF040U-X1pjwq!Qk8*2XFn0aM|*Z7r!HCIe+K;JU}hNbvAdRs?}OTuj8ZV`*n z`8;0^(*laDock&%#WqAzwW&a@weKAxh3t(zS}gWhuRQV;Z2g7tQY}M2L+{(UUj|vf zVv;^@XH)HcBP{r)D+ILw)GfasEEP0dP3|o!1K37uzpy%Dwd-T0Hw|fcFVm9hP#05Z zD{S6AFEyKqMTf(}MvyfLG0pJ&Bm2?Gkg&!TpQT0idn_>`zIGHqkH)c{#>NZW=pd9O z#!Pqo_NX)|TJxC$x|Gz>-8zgx@8s;U+T2c5mQ~Zny`i#q;>G;0mL9E7s|LKk$5WZ} zzSay(!f$fuF*hO^FvHm5=d+oyx-(u1SFMZqdsQQP`0OUV;%rLm?4ANmvv@SaL={?p zh|3krmktoT-{9uy(5c(iN0W-NEo>mA{*=o$yMN@@*?JQxgk~gM_P2Bxo*A1Of!cqI z2gv}lHzS48Iwhh6TPq~)7CG86x2!m}uA0)f^GhNDD6~ulAmpFqO)@w^&mxt|WE@5M z1;#USDffY-TA&E$X7)?sHsS(lz#?qiQ^@W4JR;lXS|&eNTr3_GKc}cIw`%@idu4BA zVjVGg4R=oyvNwCqcPsiPRp8tJ`Ll74nHp1o@v261aw)CRMfwebVNKSDvFlCG(CJhT zPDk3muTbVNagOUpW~^soAG@V)<*)~xyeR3{#|?UB7+7NpcK?AYZzOSZ z$Y|Z?Vzw&~_EK;Ful%Aw!u*G%ekMBMF|1WZ+b zs9iFfy6Kh;8n}_FRO(GO#9oiDb4j|tqaKj;dWg8jH|NcBKUl12!|_hc+UvUwJi`Fx z3e?z3V0@m9rMYtxMtJK!#Qw7$&y8zQ`9SfHsJyOHMNMyM_*$Z~U0WLFhS7gMv?Mfr zJ3OB4*~aZz9bfbrdsrvJSC%>KF1q28lk4lxY_e`{i=F3VB z2M^tO=GjLAspmy-Az$Zyxf+!>_V|8z39*OuA}FYFsspH)YY9cd5v)kl(M`EIZovg0 znixCeMC)j4$qfeqDu(RBZU_Y*3I;Jz6%bX@`L#^Gz6)dWFgBksKCeA|roL z%SI&I(>#oxK%MBLE$i}x^dK>(m1F_;R|h#D+~m-6G&`h&>Oy*t9lLBELdnr~Cqo49 zy_H)OBeu3M8OR$=s=^)oxhf_&Dtk2C;u@#(ig=J-(-WVjjfTrPz?|okXGo`;gFCS> zYW*(1CbaG{sV@Z?(bGl?zW=;(oq6Irztk_a)~C{g942N;GO7Z%AZ-YWw4{wjk~h4L zjI9=)_(dO$giGgt4b~58cXuw8QNm+mFg{4i-*aG=_K4j2GH#gA@IXiFUtRzK*}63% zXfJ}eW~%VnZyJ-XpkCpq;*Imf{`j5?^oYffK|~a{DX3bZZ@c@nVoBWXe#|&?gbI^F z_3P0Ajw*exrE7(M(7Nf+`PF?hUlfcY0Mku*Ye&Oc##4FXPLHBd9wsG$7R)Mn+xm@n zpMQZ?*w=;)I@_YProc=+<3|kD>{wV^zGfK4rjFfwGFwvFiT?jP^arDIE2GydBLh(^pq}HkB6nRtHfhf z2Fg7-I>#Mk&hn_O9od7f0 z02gv{9(==-^<%)I8M+Kc*e{fB`Wqhu)NHWS!(OkHW8U~~5F7jomMElU)+@`nWW=pzEbi zFX<7;e+q%n7)jheZ939@B7d;zHrN}d^@m~+2F5Q+y<40pj;BSByk+|Omh!Cg;67pO zvcb$TCIq4xfYQnHe>HdBK}~nlW zN*53i5Kwv#O%Nizmk@d{p_h%NyQjs5)vo*|nd)#y2q*C=zm-+k36_CZt#x3S2p!^qB9`l{vHWH;qs zikFQdXB##j>Tw$LnT7u`MLgrhX(U-3T%Tb(FS+H{k<(!>75AblBNQ$jlhG8Y>)4P$ zfP0P^Dl26O2FBN1_5b=H%h-j-TXMbHpOiWjS;$B6Gs0w#-ep4?+&po5n-Vv=SoNV% zjRmoiTwy6GF|EqumI0=|5j5fws6xbv_gpD5W>Qvrm%oV^WsAyqxJH+kQpV+zo?FRd zH3R;171N7-5*GQnA|+wsmx_;PuFT%xgO*T9;8Niwi0|64udtP6YZ3K*SAY>{~u zo4y$J(opg0RSP#8kO$#3yp+gn{gv-#iHfUtD!ih!OLxR_t=MTNv{Fv>!lw38^0J7! zI>VBLA66%)Ef?1_rsd{nYU4&QgqzKcTTi;Y1S4kg*r>SJ5;H8nU!8$bg2HWyHz(dt z(Y30&LJch`w&bWX+%_|OfY(CIFX#7ZfK91x#}7ZSakQ}_7*>8S=$9^Ey}%`5#akTJ z)HGJNGcUViO@%dcvnrl>fi2QVupO`}E^a|IGbXI$f*<>~6TNqaF?RFg)-W4WQ%8@b zal^`?!9hmpJBjqkNKSEz_>icXnW)(vyL|2gGwc#CvMn*fc5T_Pu%@WOW0d)VcYECn zdmDQ*7%bCckp2R$ed2{jR*lQce%7|-c2|3k%Ibl!A(>cr5Cf7_6pvI2SxGBg{p3`p zn%@^6??wT(6#NFnfP5KXi|?i=2C*Vzf zjBw#nxnI1%6dbGWd0kjiP*LOY4WX5vzm^{s72(9^Mrs;(n4E)QluCA#l8Q>3G)lcgmv|eLfE-iIB3tGl>TgtE7*9v04$5k73 z7vi>~()(7rSpAeKUm%1J6K}C#d28#IiNSJmst#c#@w`)0V-myKxqb1BD{0js2g5r? za~+&(o405@w%6`opK&nTd|o7A#xG$5jR!sI)cIuVz8K4%wS>6UTZj`xHFG8^q#=ND z3kZt^C57;p-%1Osow^0dQBx~T-K_^>7Wv#w^45ET9mC+qfm@?r1#@j#9bHioiL)E6 zO?WLr?4@@CN6i|AbYj5f`c$(M>hxBNqK#IX@}lng^xpaH#K+flHv2Q}RcNn7xGr*a z$~frUP*5+FTP53i`=p~qWcM>PDJA?9-Jb76^KK>$` zPf|#e?6t*3>+@b#gwmski=)m`C-RdWovBDbs##>DU3dm>{o%ld$cY}wlbM7j#%Cu$ zs}MB*E+_m@As4iYlT6Z{1L>+jduXwDSEO}SBsP?s<1o`L5gS}u#5uR{-?hwdGc*5@ zxjOcr*>$*JRaNT6A?!A1X|qR{G~aYwb%2cQeidxN;P%2!wMQ37?l_VKez#mkqFnV4 zTaw>BO|0$8C)|aAo=ZQb()`PsT#w+~8|daU8|awdJ8Ide{lk)=uVPxXMiZ30f|<`c zM{8?b=jujw-9fTQh4OD5f|vxd;<75`Vla5w4G~(>oLJegylIQXrg~@=WyOzayL^uj za2}s7iiV*_D(NJB^dJ3h?g6P_orx3rC2{zd)2q4uTUch5)fTsat9eEhHD*7V&Z#wE zsbGF30z4U3Ja0QsZN_@MFxzQK96l|E7{oeG^3|+3C*>*?BnI1rNqh%kAojLMWI^rw z6Zz#l#|&dLb6#xi$g$3@C?hjKVg&HXhFk7~kdL>{H3|*AV~xS`C9O*8r0DaF; zrX7`H!{0{MmD}J-lm{C2|BVO|qv)o>y5jtH6MY2?$ z^vnErRt4qOq(yy4Fo*cKMfljU&kzJ!-nH32mZ*tcTfSIbh-D7532@7*gbvfZ2J8r9 zwQEInL4n=iQ69*abfGZnBkCv*#2)k>Kpx0Z=b>zr#c4IKs-v2JP0mVg&Ty?vX2@>{ zWnoszAw8s>1!H;*K$L>wZgZ#E-+3TF;}1-AtBG1I9ziN^efvY0$927Bc*W@DD!XIGZ%HaR=;J=Ha;&yq+27 zX&z87q-rv8J`8^A^-Wi8I$j-jc%K(mZ3LDTDG{gwCi5t4RY}HsfmR^ZRlktTu{#zOs;IcctfdPH-ubLNKJs zJxtv{m5%E`%0}az^IS%d;hQU_2}i@={^HqVvmamF_bWT;gacbqc%Bm`E!H zh}TH0JziX>ET4(xKk?O2ADU`dhR7v@)N&v99J9Aoc8m~v$)^-`S8%;p4q@T3lRd{M zPq-Z&@cdVTelKO09quu+Ddn8b`5?%rg<6PVhQQ`?*yJUT2Y4nqr%Mty?S){Ov$136 zd6drpMDcjE*RW(PhP}ZKf{6xRj5#9bs1l>*_adq zOtJSuKi-Rge|4^DSnh2`=9J7-KZk0nLK{1`{4cjxi4;oYzTA#(j9F=01wkO|9GQ_M zogx{VuPgOC>m_b>tgI~0_7?Vt7Z&pCIuam_r){FE-}4fKKr&S$C$Ev-5&Zf``I6Ky zOSryOe((@ z71+J(UrJno1;4gjWwOZ?=qnAKUG9}EpIcLdWkNG+68gV8wG9ouelgh&d-F~dDJ|pd z90)3oe77nT9ZSCiN+*XuzgWern{6r<{Sm8Sdq`u zYfi>yFwZavo=E*dUs>T}@X#BupK<`H_{&0Zr0{01i=>eL_oEGw7d?H{!%zHs6zV^7 z4Rf@VNas=S=HEC5AS)kP@=&3_+vh|Qga~B#(jHmzD%6N{#6Jr0Z!+Lth{*p8j#y{X zoMhl{5TVqYT|3v-kuM>p0@9$jm#DNKn*;_%v>%FnH*E=oeZswJJ*L+yDUQFwAi=Ly z^WCbZlH`}BXdzq(eFw)vy^ud*4%!;tksM_%UO>0FNKQHzNE0ivy&C?v}*{; zFF0RG(iJS+uxR$TV%!iyIlh@(KC%#! zw<1RYf9d*iFwr7cmnba*WjV#TxoKi`_IQfb@1cI2w!VN*Y09LGoNYd%Nooolj8}K( zX61~=hQw5-VV@is==wvx+KdX-2i0$#IKP_FbYZ-S93$7x=Pya(yk6IF1&QH~x6HNv zS&ty2nR@B8`S$UTXW$%zXLr5-^ZD_taLeO7$5PF&Q9y2A87N_X`cw_D2oSz){+`#m zBM#vU$MvJje2pqYQ?k@Q783Q-V#&;O5D77CCv90_#PozYjRz-5v?@XJV& zz&^}}~3+A72QOHosq%~pk3FIf~ z$c|+5V~#5o3AOuAMWs#%!!lEhE0e6UQ(1&QeYfHcKUd#7ZgAhD=bP?8uUbO~n~KNN z58Aed0C0WZ#!V63WOS$Sr#)_ZC8&Q^S1<$>&BvH$#+}N>o#y6{jhlE}nPO!b&bH`z zzA_`v|Lr12&y}zDeJ>6A0u}Te#|LBc0=C683G0K|*tkzE=t#-eHUswjkJR+UrO(0) z#s+(K7x(XvWMr7n8HaVQWc}7lRno><##}v4Mytn3fV@G_UifziK-R9`HjfnukKC>l zRy`^-$|Znn1tm7?*FMqEpj0uGzSfY~^2HyY3I}xaV96JM47CsMw0r{efxdltIRFkO zo$b@h2be|6d(D%#u^GsQYg}vQ$wWX>*dPGBQMj|% zx}&JNb+$h~El9>Hzh5+i1)_ImeB9i_1!peAP!5tL0qQY}!2qbDaewyVP=f47cQ+Uu zyj=&-5c3#kkx~FJJb#X9KIpUkO6limyr&JYhf(w75WLltxe!ypW(CB1@ z=Ea>ew)-f=a9o!9vFe9g(f{HYgn7|{@fA-d-8>V74Z+$Hm~ajVwJNMdM6uvc`V~@} z2nBAyx7>CKY#YYBONDLc@01x;R@Kfq95&GYOU3*i@Qm`J3p;)8_~~p;PT70FDGHu1 zzBcD%sZT&UHu*Y8x@(bp6Rm=(BDbi#O|l~j^K4#jluf{=Q!Z^3+ykqt;1~VGe5j8k zL5w7lzVi>r;-hAC*-n=asIl02__-o(x-3feJQX#g=0vyiUK@$JiVD5==xT?Uu$Re? zH*xz(tWOMsLuU2Wu}% zh)l9zy;8mTd3w`LSkh@>1kb}Kw=_P8@Q$n5EJ~NtB`&z#{F5D?$*H)PU-DPcMriu- z1FR`=3L^m$TzC7Wk2yHc=h+t@BYi30awp?3u;dt=7M$#m=6X@cKi{ zyEs4O*w$|NJvTPsQ*n`tf^gi-9F86H%de5oFQGfgY1I5&?K{a1BTfbZpXAL@pTk-u0QAGxj{Mlo)m(lk3W2zlD(PF%vC z>?ufX!G)se8#0m9_2=SLA<-NQ7_zLjt5wfkKV*J35_d_>;)#czh=6sF3SNGN3^`P1 zxhfoR#W*-5U0USjo%bAP&E@H9pKU67k;LDR&8ryOY_f=3kGs|mgX0x1b~O9DqliZ> z+%Kt_19kFlP|%e1nAoqeoYDM0SZ1(p4pVz5_nl;QP;6X#oc~?yBB6%Q!q*~J9y!IV zG4}@MQWGr^$I<%Yvc-)FoxDubjMVuIni)xsDS~xCoB$cWR^jE#n5;FfGmwozN6C(2 z$!}E`sqU5F^rUZ?sCMh7W|O9=zV8${6~PKfhyo5w1QTR~Blre`!u3Rp9R<6{PQJ5K z!JJ(fg08^wgE;ae&ZWvMw%g0^=)FE)>$T82N9!=4@l*+F)4cOePh-x{tRqz@MdaiZ zpGpIFngw+RUr2qhVr5O6ODHMQV||p_E!S`{mpim-E$$dg$>VhGstj^>QUDjWXB1GDIsignRlPOdARO*GM9{odcm|ebJ#&jD} z-bbqNp%@kEFA4DKf?r)Xd$tcX2a7Y#2WIhj$I3!Jx=L)HX?rOt$k~+FG-E-R0aOio zM#jS+`#+%$_|7GxNaA0?qBJ64PugVFE?^#B`PrmRGixBIzbFK9msvHQmyN%7vHxt5{bY5O3}@MQW)W&SUIb)_-X`Ah<)?^KdWE zjhIeR{gwDYIx<%LP5x?wulkD!{$FD(h?_zrw<&plN7`jESp6q@`cDSrPZ<0E5m?d; z;PBczt-AT^D=;`VuM)J)%tK-BQ;eXWe5;kI%NGz5nE9@>KN0fv(vvDll05KmVk)52 zQGD-z#@7Fy(cJI`y4rs^)A?)B#NRWe|Mi*9-{&d!-zj!*75R=e%4+7;N&2Xf!fo@m;4ggsz>H^(6yC+5$ouTDE@pu6E+J z4XY-fFwIR5P=eGVGnN!;&JuR02o!RT-Mr`q^Emu8tUx63C&W1`T?v`&00(i1sN4Mbc$geGV_+@0*STGuoLS4n=wzhoOg_({kk zF}H14o4#khg48N)WY>}yN6tcOH{2~%*{G_=xxR6JAbdMYx*9W9c!8xXeJLRSI9rQ-Lmd)v6?R}Y7241HeKhCS7| zGYdphdHohJH+YEu?!$fg(pXH`Q(%=%k~jJY+F8+s0q>6KcTJn_ai2_M+7R-mhY0yP z5@*b-4~a;XK$Q>!h5ma_GKkjlepjQ@g%jERU--Xs1m6}eiZZ=_Os1uf?LJ+t0$78q z+|YUKb%YPUqUaOZ^NW=4I_k+{sKK*kC#uXxEZASU34a?x{(B?LeBl4}jWM3{+R%f*i&_J-5qSI`|(GKVo}b^|Ch-7hWqjI`MPEUWKY zbspY+6Ds3W$aNQ_?VKXgcP>je^|23eNLbZbNd5pJ=+Yx#m>!pQ33-o&_UC_p%~~b8 z&Wy_UNWsrfMEQYKoCA|6Xlf#s?0Fa0c(V*1bRNRiDlVPg!{owlq1`tZ7%BHBuuC_=_c5;q1#;OaD>i1ns%EZkvh7S|zj_>G`7!-&}5TX2)v zGs-7S%t@1Zaj`bSw-R^PWIPBstO1TIeq(ODp)`!J^~f2wphA&jKu8pX&u%;fEB-0i57Pa`ia1WML`cHpkZSSlI~MV`C;07<9j;rgUx2dHu!|C2?LK^ z3Ym9Q2*L`?BiVh%$^hHy4Mi~5Y)?-ugmL1M)+i3@Jq4>Mj2Hm(0Y7;xgA z{5Guw85~Xm+mWgJDs&pUN?3`9A0%cPI8Tw(V(bYx3JB%`B&lAL41NlN>Dh%Jkg-S} z{%Yu|Q)!vX|B2WSX+vX~7laFQ!zu~WW-@#2R7sMahrB)clFTIzcQt^5H-G$};$@p9 z&vRSJM+!H}7{&srHLKa$+r&hA?2(bP-e7~dTP&}glg6eiAV}fZegt-m!kbIRV;7e! z;|yN6n~cXySF%dFY)p*6s%1V}x(LzLMtH&@)2CtX7sq7qY4g?Cuo{Sr*%XD;aW6ju z=PmJX$)1>}bX(Y-T(H9x{9qhFlvP%`4R|=0@FAr)W6j)kYZ$#jlETg$d|jEa0Iwj# zf{SIJg0N2TA3Hp$GfAl1AZ%VTBdo*V6B?d2#WjZzmMT1^0fBcT+{gC~Kp>u4&RZBR zxXaEMh0LnQ;VuFn!bw<{fbXCR#|YTd1T7rmFdwexe1NASY`CGNke~1ditsS(VLtwb z$6Om?uaL00B8y{fF(`AU#%y^P&gbLf4ks0cKoY`~!JZ!?jQ~CDChS6Ch*;b*48Lkm zFx<~a?;B!!kjLd!z6JHo(d5nuB z17xq%?=cj#)9jX{-3iswwLMg0p1TcP9nuUS4@8kTxJ+5pH?zWZ@f@eYsOy^X*N_D7 zctA9&9W9>yrvc4<;y8Gj_G4m$Z}HDE6c$YM$^B)e`~R#M{J%jN|5sz$zxxOO2Rls! zlfaF8X|3WkG%)=Q>WQhGRcwZ7Y=#Zv>-UAfdiLCQ$%OIKZtuDBn$VTaj9sUz`c%u^ zb{j|LIl)}u6+miN(T)@sH`be3V`N&i)mUN!cPPqT>EtRPAbe6pO#^cI{$(n70$QF+ zOi|S*U8Y@sIrlsjVJE{4oX+I4#OvV*_HL@zG%3c9Kk65Htzba{!DQPkjs9Sdg;|{M z2&e$bm(u}O+M!lish>WwANP{H@!4(HzZYaCPr3{RzJhr13DL@x@;xeZ3X2huXeHVB zX-i*Xyja0J2R5QeP4S6N22FQZMn$wMF@Q*_>x8{wR!&Q<7pX~#&2U~%_;E!i8c}?x zWQobEFm7e}D^Dw&!oILDmrTd=_k7ohn=pgizWekUW#QG$g2b`IkC%NOzf)sNrG18J zmslHhyky(j(tirlE2=VE?OalL>RZ+8PDbF(uYE!^J|*rfcF!x^)U*UXd;oOj3D!MH zL-7E?Q|Viko$eWel_|CeSiUq2Emi=|SPdk*;o0?1^Q$*wfO84>#nQ-um?wK(43&4R zw}cbhWdV&gbin~s6y;qFEM;c^6>4OPb?8LF1VRoxN}f`D0ZOTyT~+xRr8Xj5IjqT$ z=txvHEtegGCIO`Ywr*+lX0&Bnb)hH0gfPBL!>kXSvX#UeP4W@EmlWs@V=leFq54O>Djf8AEZ>F=grc4R1-1!-?_E-*p9RF28Eey^okPJjwC1 z?B0$7HAPahm>fy;W;ow89D^;mFjQkEP51~(J>Jj6o}UU0cxZeVQv47@q8Z0ml-&;T z`u3|d;bHf^S2hiC+6Jlgrok_6eb9+J0f<9+j%w3Eed@t$(8HFSU5NvaJZ93?ZuuSy zydlmSWR09ti!#t&K2LuPGCre@e05kWd@pq{1%aCO+-gSTmmKP3rGaX=;HYN=OariB zZ94R;<>Fxlw7t_Y*YyUzt@`Ca=soo%c(6a8eWZSMI|Opiu1fD6c^+fX>kA(*L%4Ff zyA?hZGO8Lb5YS_&hNci*5{M@S+2BHS;vhfCrRQ83=Ow=DWSsb=e2?LJRIFttP0tDm zNux5^6aTEnoJQqkk*r^8&ogD?OuZ!hn`q;Q*hkAHp)~^P!#7{3 zRh0_EG=lrOUoBr3NjUvJ_2R(N@Pv1>&qV)y>XDlyklQ9k7(L^%4C~bg3qIyc2kEqH z8OG&1c zb&N>Xqh_XvI9fuUk^tnMULXG;d*Y(w1B>>nwT^n~r2dR%*r!iaM;vBDOqa;6EtVNQ zdHZOpcCY(1i0bp`CIpKH6TWOUP{~v|uTPez&6ji9ugDNK5imjMPJ7%h4-5p@pgS)O z5MLp2I3tjWZ|29bX$`OQzg_LOy&_`x+$1dV0w;nmS4Vu8ql3+)(a^|Ch+VS`A zcg`GuMd85k^!O6-o4%a+@7@l!kT|K=+mcB$qBt^sk1;kS$r7+fPI!TXBL>PQi&2{uwA$E_W?$t&jJ@(pK?d@R+_-+TS{XM*!Q4@VFk=)d>l+EM4z zgZ|&Q$d~!3^XUqsb0dD{Uh7Hy$MIm5r;}5YJml{m#U9K;8$$y#>BkA|&a(V>9zugB z#ZuqQ9jLa?OhH>Sez`}?E7Nf)o^MXE5?9>3b;t6?z?s2g>{TH{L6aX3LZ_NdVf{2I z`HhepaSU&PH4tBZm(G7?(xgO++-tqP>v=K0ZNb{iYIpu{(LzBQjb^Hr)RRI%a(Ynf zv-lr9lo*0o@}njoo58wH+@_)UX(5Ar0`F% z1=B2I?fL*BGT843&6W7^WKJZwJJQwmBNUSQkaXm1M5FMw3?9d^!|#{z!I%y%ei)xa z!)rncF-a^t>tPt9^Nstn1p_uOxgWyck!5wjqm*SvpOL(IExpE=!M2_R@+r4KO!+d} zuD*)oy<}JfUyuhf)FsoxKl_V#x(aHYPwQgTxYqnf&xHNxRSv5BC_Z~m$nZ$1yI8Y$ zW+?4vIVQ0Tqn=mHq1-(jZBG`^h|P&P+J$5;wj&$!3kkfXC6LtWcWA*)Vjju*DhMH(@Ov zyUbKoH_wkX+Qb+WT$N&Y6OQ1=CZn#d_)%@wajlpV>#fE7?M4CXa4u}*qJIhv zc)&FjiBPV_pX^E$3blbC_*&Zd#?a5lt}8s(j3$TpDi5o_HIz$hW`Iz0Wide@DJU|h z4kq+j8`lXY=W}Xpl~+Eg==NO`{Cv(F0*RZ_di2Y3aj@9xR&e`V%4RJC`&QHvcy!2{ zVy41mYJQJ3$NO+kGb&;V?uo(o=bXwXKmx=)QI|+JE%R`=njQ;#I@$Zi4e#5h>s5l( zPO+z?8qu2AebU%e*j>39=DI1wbCZ(E)oJIdIEh!uXW3Pd5!|ad#!mgd(Lqv$0@6Wo z^7a#bTEz?HqDbde)Mwl0JCv2`fIehs#s85d^7gp?B@OzK|KVN0s?vN>mohEfYOat#SDZGmT)!-j?v3(@kq42 z&h2uH{iQ@w@ZxJU8?WX0mG%a!ePrfF!cChGLf`l(?_HU${5kD$<$S!a_C=2IvG%Vv zv5j(9NF0ziARI~s{RNKZ@61!8R@#i$^eG|8?|YK|$P62~s0>pbQ!QgxRaH(-L5Xdp z6VWaHrf;@umB}F@w-W8SLeX;*jwX&;{j5bi_aQD$KbLe?lcsDcRv4^VXhR}X9~A10 zFjIBd;U2Vw(Bx+r^^eL-R_9o{3Gfs;R^IJ7!HWqN?`BVza#-XwI?axQ=laoM%{;lw_c_w;3FTNn#<=JUS9dA3b zpxn1)w(4es2><9U_EHT9EqT3SJIQE#0sSi(n3!J18!9epOWZu*fgTx{C1P^SBi zf}sgv*`#$rRTl~#SR`=RT{uv+Ff%`!&Ew6|QyNM@|bEWK&$s3Y9}6FXZLx}SNi;~M)w zF$tBPjKCrqKAioQaZattla9;ongs&`TYTfLdE89Y^{@m_cqmzlSuY{j7yZWn;GW5K z`?T=@8KVH8^msPR3lqzdgQ(Bry6>Y;3O5!&*tc~0iKSJK51!ERV2ig;YrcY{@NJme z40uE7XJX~!Mm`Vi2+S6BU1cK{X{H^Y<`|EbT~Yuw7U9^z)k#Fsw@Y+jUJ6l^Q@)pX I$MEfc00j(F&Hw-a literal 0 HcmV?d00001 diff --git a/mail_digest/templates/digest_layout_preview.xml b/mail_digest/templates/digest_layout_preview.xml new file mode 100644 index 00000000..0ca9f8be --- /dev/null +++ b/mail_digest/templates/digest_layout_preview.xml @@ -0,0 +1,18 @@ + + + + + + diff --git a/mail_digest/tests/__init__.py b/mail_digest/tests/__init__.py index 1e4552ba..444774b5 100644 --- a/mail_digest/tests/__init__.py +++ b/mail_digest/tests/__init__.py @@ -1,3 +1,4 @@ from . import test_digest from . import test_partner_domains from . import test_subtypes_conf +from . import test_preview \ No newline at end of file diff --git a/mail_digest/tests/test_preview.py b/mail_digest/tests/test_preview.py new file mode 100644 index 00000000..6f2f824a --- /dev/null +++ b/mail_digest/tests/test_preview.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Simone Orsi +# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). + +from odoo.tests.common import SavepointCase +import mock +from ..controllers.digest_layout_preview import DigestPreview + +REQUEST_PATH = 'odoo.addons.mail_digest.controllers.digest_layout_preview' + + +class PreviewCase(SavepointCase): + """Easy tests for preview controller to make codecov happy.""" + + @classmethod + def setUpClass(cls): + super(PreviewCase, cls).setUpClass() + cls.ctrl = DigestPreview() + + @mock.patch(REQUEST_PATH + '.request') + def test_fake_digest(self, patched_req): + patched_req.env = self.env + digest = self.ctrl._fake_digest() + self.assertEqual( + digest.partner_id, self.env.user.partner_id, + ) + self.assertEqual( + digest.digest_template_id, digest._default_digest_template_id(), + ) + self.assertTrue(digest.message_ids) + self.assertTrue(digest.sanitize_msg_body) + + @mock.patch(REQUEST_PATH + '.request') + def test_fake_messages(self, patched_req): + patched_req.env = self.env + all_types = self.env['mail.message.subtype'].search([]) + messages = self.ctrl._fake_messages() + self.assertEqual( + len(messages), len(all_types) * 2 + ) + + @mock.patch(REQUEST_PATH + '.request') + def test_fake_content(self, patched_req): + patched_req.env = self.env + subj, body = self.ctrl._fake_content(None, 1, 2) + body = 'Random text here lorem ipsum 1 / 2' + self.assertEqual(subj, 'Lorem ipsum 1 / 2') + self.assertEqual(body, 'Random text here lorem ipsum 1 / 2') + subj, body = self.ctrl._fake_content(None, 2, 2) + self.assertEqual(subj, 'Lorem ipsum 2 / 2') + self.assertTrue(body.startswith('

-

Hello,

+

Hello ,

- + - -
-

- + +
+ +

+ + + + +

+ +
+ +
+
From 81c3afa894b1bdb1bbd410797d676beeab53181b Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 26 Apr 2018 11:44:16 +0200 Subject: [PATCH 12/86] mail_digest: display mail tracking values Prior to this change we could have digest messages w/ no content. Now we display mail tracking values if any. --- mail_digest/controllers/digest_layout_preview.py | 6 +++++- mail_digest/templates/digest_default.xml | 12 ++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/mail_digest/controllers/digest_layout_preview.py b/mail_digest/controllers/digest_layout_preview.py index f3abc871..2766a52b 100644 --- a/mail_digest/controllers/digest_layout_preview.py +++ b/mail_digest/controllers/digest_layout_preview.py @@ -92,7 +92,6 @@ class DigestPreview(http.Controller): msg.subtype_id = subtype subject, body = self._fake_content(subtype, i, x) msg.subject = subject - msg.body = body msg.message_type = random.choice( ('email', 'comment', 'notification')) msg.email_from = 'random@user%d.com' % i @@ -101,6 +100,11 @@ class DigestPreview(http.Controller): # relate a document msg.model = records._name msg.res_id = random.choice(records.ids) + # simulate messages w/ no body but tracking values + if x == random.choice([1, 2]): + msg.tracking_value_ids = self._fake_tracking_vals() + else: + msg.body = body messages += msg return messages diff --git a/mail_digest/templates/digest_default.xml b/mail_digest/templates/digest_default.xml index 4343b975..66c10f66 100644 --- a/mail_digest/templates/digest_default.xml +++ b/mail_digest/templates/digest_default.xml @@ -43,6 +43,18 @@
+ +

Changed values

+
    + +
  • + : + → + +
  • +
    +
+

From 2a94ceb8dd0c6b4c5b7c86da7dbca2b835e32d25 Mon Sep 17 00:00:00 2001 From: David Vidal Date: Mon, 14 May 2018 16:18:11 +0200 Subject: [PATCH 13/86] [FIX] mass_mailing_partner: compute fields performance (#271) - In DB which use large amounts of records and intesive use of mass_mailings, not optimized compute records lead to a drastical decrease of performance --- mass_mailing_partner/__manifest__.py | 5 ++--- mass_mailing_partner/models/res_partner.py | 22 +++++++++++++++++----- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/mass_mailing_partner/__manifest__.py b/mass_mailing_partner/__manifest__.py index ad7c4362..493639d4 100644 --- a/mass_mailing_partner/__manifest__.py +++ b/mass_mailing_partner/__manifest__.py @@ -1,13 +1,12 @@ # -*- coding: utf-8 -*- # Copyright 2015 Pedro M. Baeza -# Copyright 2015 Antonio Espinosa +# Copyright 2015-2016 Antonio Espinosa # Copyright 2015 Javier Iniesta -# Copyright 2016 Antonio Espinosa - # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Link partners with mass-mailing", - "version": "10.0.1.0.2", + "version": "10.0.1.0.3", "author": "Tecnativa, " "Odoo Community Association (OCA)", "website": "https://www.tecnativa.com", diff --git a/mass_mailing_partner/models/res_partner.py b/mass_mailing_partner/models/res_partner.py index 334d6a03..d98c9a02 100644 --- a/mass_mailing_partner/models/res_partner.py +++ b/mass_mailing_partner/models/res_partner.py @@ -36,17 +36,29 @@ class ResPartner(models.Model): _("This partner '%s' is subscribed to one or more " "mailing lists. Email must be assigned.") % partner.name) + @api.multi @api.depends('mass_mailing_contact_ids', 'mass_mailing_contact_ids.opt_out') def _compute_mass_mailing_contacts_count(self): - for reg in self: - reg.mass_mailing_contacts_count = len( - reg.mass_mailing_contact_ids) + contact_data = self.env['mail.mass_mailing.contact'].read_group( + [('partner_id', 'in', self.ids)], ['partner_id'], ['partner_id']) + mapped_data = dict( + [(contact['partner_id'][0], contact['partner_id_count']) + for contact in contact_data]) + for partner in self: + partner.mass_mailing_contacts_count = mapped_data.get(partner.id, + 0) + @api.multi @api.depends('mass_mailing_stats') def _compute_mass_mailing_stats_count(self): - for reg in self: - reg.mass_mailing_stats_count = len(reg.mass_mailing_stats) + contact_data = self.env['mail.mail.statistics'].read_group( + [('partner_id', 'in', self.ids)], ['partner_id'], ['partner_id']) + mapped_data = dict( + [(contact['partner_id'][0], contact['partner_id_count']) + for contact in contact_data]) + for partner in self: + partner.mass_mailing_stats_count = mapped_data.get(partner.id, 0) def write(self, vals): res = super(ResPartner, self).write(vals) From 98180585518e0ad9f9de36f8fe7b1127c4f7d24b Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Tue, 15 May 2018 02:55:41 +0200 Subject: [PATCH 14/86] [UPD] addons table in README.md [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f4b5e61..52938f13 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ addon | version | summary [mass_mailing_custom_unsubscribe](mass_mailing_custom_unsubscribe/) | 10.0.2.0.0 | Know and track (un)subscription reasons, GDPR compliant [mass_mailing_event](mass_mailing_event/) | 10.0.1.0.0 | Link mass mailing with event for excluding recipients [mass_mailing_list_dynamic](mass_mailing_list_dynamic/) | 10.0.1.2.0 | Mass mailing lists that get autopopulated -[mass_mailing_partner](mass_mailing_partner/) | 10.0.1.0.2 | Link partners with mass-mailing +[mass_mailing_partner](mass_mailing_partner/) | 10.0.1.0.3 | Link partners with mass-mailing [mass_mailing_resend](mass_mailing_resend/) | 10.0.1.0.0 | Resend mass mailings [mass_mailing_unique](mass_mailing_unique/) | 10.0.1.0.0 | Avoids duplicate mailing lists and contacts [website_mass_mailing_name](website_mass_mailing_name/) | 10.0.1.0.0 | Ask for name when subscribing, and create and/or link partner From c6064d4a492144f4bfcf389902afe5b8665b285e Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Wed, 16 May 2018 02:56:27 +0200 Subject: [PATCH 15/86] [UPD] addons table in README.md [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52938f13..f5d69a06 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ addon | version | summary [mail_tracking_mailgun](mail_tracking_mailgun/) | 10.0.1.1.3 | Mail tracking and Mailgun webhooks integration [mail_tracking_mass_mailing](mail_tracking_mass_mailing/) | 10.0.1.0.1 | Improve mass mailing email tracking [mass_mailing_custom_unsubscribe](mass_mailing_custom_unsubscribe/) | 10.0.2.0.0 | Know and track (un)subscription reasons, GDPR compliant -[mass_mailing_event](mass_mailing_event/) | 10.0.1.0.0 | Link mass mailing with event for excluding recipients +[mass_mailing_event](mass_mailing_event/) | 10.0.1.0.1 | Link mass mailing with event for excluding recipients [mass_mailing_list_dynamic](mass_mailing_list_dynamic/) | 10.0.1.2.0 | Mass mailing lists that get autopopulated [mass_mailing_partner](mass_mailing_partner/) | 10.0.1.0.3 | Link partners with mass-mailing [mass_mailing_resend](mass_mailing_resend/) | 10.0.1.0.0 | Resend mass mailings From 76e7c80b4dc1cdd3773385958671c6b746270a06 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Wed, 16 May 2018 12:01:58 +0100 Subject: [PATCH 16/86] [FIX] mass_mailing_event: Avoid double test Fix a typo introduced in #259 that didn't disable tests at install --- mass_mailing_event/tests/test_mass_mailing_event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mass_mailing_event/tests/test_mass_mailing_event.py b/mass_mailing_event/tests/test_mass_mailing_event.py index 0ad6dc37..2c7e7684 100644 --- a/mass_mailing_event/tests/test_mass_mailing_event.py +++ b/mass_mailing_event/tests/test_mass_mailing_event.py @@ -6,7 +6,7 @@ from odoo.tests.common import at_install, post_install, SavepointCase -@at_install(True) +@at_install(False) @post_install(True) class TestMassMailingEvent(SavepointCase): From 932a0d5504eeedf5d7649dcfb1c3b055574daf4e Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sat, 19 May 2018 02:55:46 +0200 Subject: [PATCH 17/86] [UPD] addons table in README.md [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5d69a06..fca70bc4 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ addon | version | summary [mail_optional_autofollow](mail_optional_autofollow/) | 10.0.1.0.0 | Choose if you want to automatically add new recipients as followers on mail.compose.message [mail_optional_follower_notification](mail_optional_follower_notification/) | 10.0.1.0.1 | Choose if you want to automatically notify followers on mail.compose.message [mail_restrict_follower_selection](mail_restrict_follower_selection/) | 10.0.1.0.0 | Define a domain from which followers can be selected -[mail_sendgrid](mail_sendgrid/) | 10.0.1.0.0 | SendGrid +[mail_sendgrid](mail_sendgrid/) | 10.0.1.0.1 | SendGrid [mail_sendgrid_mass_mailing](mail_sendgrid_mass_mailing/) | 10.0.1.0.0 | Mass Mailing with SendGrid [mail_tracking](mail_tracking/) | 10.0.1.1.1 | Email tracking system for all mails sent [mail_tracking_mailgun](mail_tracking_mailgun/) | 10.0.1.1.3 | Mail tracking and Mailgun webhooks integration From 1d3b92c04219e25e3fa253d08fed337033568bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Fri, 15 Jun 2018 23:42:59 +0200 Subject: [PATCH 18/86] remove obsolete .pot files [ci skip] --- .../i18n/mail_compose_select_lang.pot | 23 -- mail_digest/i18n/mail_digest.pot | 197 ------------------ mail_full_expand/i18n/mail_full_expand.pot | 34 --- 3 files changed, 254 deletions(-) delete mode 100644 mail_compose_select_lang/i18n/mail_compose_select_lang.pot delete mode 100644 mail_digest/i18n/mail_digest.pot delete mode 100644 mail_full_expand/i18n/mail_full_expand.pot diff --git a/mail_compose_select_lang/i18n/mail_compose_select_lang.pot b/mail_compose_select_lang/i18n/mail_compose_select_lang.pot deleted file mode 100644 index 14e4ecae..00000000 --- a/mail_compose_select_lang/i18n/mail_compose_select_lang.pot +++ /dev/null @@ -1,23 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * mail_compose_select_lang -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-02 16:47+0000\n" -"PO-Revision-Date: 2015-04-02 16:47+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: mail_compose_select_lang -#: view:mail.compose.message:mail_compose_select_lang.email_compose_message_wizard_inherit_form_lang -#: field:mail.compose.message,lang:0 -msgid "Force language" -msgstr "" - diff --git a/mail_digest/i18n/mail_digest.pot b/mail_digest/i18n/mail_digest.pot deleted file mode 100644 index 17d90a5d..00000000 --- a/mail_digest/i18n/mail_digest.pot +++ /dev/null @@ -1,197 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * mail_digest -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 10.0+e\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-08-01 08:16+0000\n" -"PO-Revision-Date: 2017-08-01 08:16+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: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid -msgid "Created by" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_date -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_date -msgid "Created on" -msgstr "" - -#. module: mail_digest -#: selection:res.partner,notify_frequency:0 -msgid "Daily" -msgstr "" - -#. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 -#, python-format -msgid "Daily update" -msgstr "" - -#. module: mail_digest -#: code:addons/mail_digest/models/res_partner.py:11 -#: model:ir.actions.act_window,name:mail_digest.action_digest_all -#: model:ir.ui.menu,name:mail_digest.menu_email_digest -#, python-format -msgid "Digest" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_display_name -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_display_name -msgid "Display Name" -msgstr "" - -#. module: mail_digest -#: model:ir.ui.view,arch_db:mail_digest.view_users_form_mail -#: model:ir.ui.view,arch_db:mail_digest.view_users_form_simple_modif_mail -msgid "Enable/disable notifications by type" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_enabled -msgid "Enabled" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_frequency -#: model:ir.model.fields,field_description:mail_digest.field_res_partner_notify_frequency -#: model:ir.model.fields,field_description:mail_digest.field_res_users_notify_frequency -msgid "Frequency" -msgstr "" - -#. module: mail_digest -#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_id -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_id -msgid "ID" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest___last_update -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf___last_update -msgid "Last Modified on" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_write_uid -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_write_uid -msgid "Last Updated by" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_write_date -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_write_date -msgid "Last Updated on" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_mail_id -msgid "Mail" -msgstr "" - -#. module: mail_digest -#: model:ir.model,name:mail_digest.model_mail_digest -#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form -#: model:ir.ui.view,arch_db:mail_digest.mail_digest_tree -msgid "Mail digest" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_message_ids -#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form -msgid "Messages" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_name -msgid "Name" -msgstr "" - -#. module: mail_digest -#: model:ir.ui.view,arch_db:mail_digest.notification_form -msgid "Notification" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_subtype_id -msgid "Notification type" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_res_partner_notify_conf_ids -#: model:ir.model.fields,field_description:mail_digest.field_res_users_notify_conf_ids -#: model:ir.ui.view,arch_db:mail_digest.notification_tree -msgid "Notifications" -msgstr "" - -#. module: mail_digest -#: model:ir.model,name:mail_digest.model_res_partner -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_partner_id -#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_partner_id -msgid "Partner" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_res_partner_disabled_notify_subtype_ids -#: model:ir.model.fields,field_description:mail_digest.field_res_users_disabled_notify_subtype_ids -msgid "Partner disabled subtypes" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_res_partner_enabled_notify_subtype_ids -#: model:ir.model.fields,field_description:mail_digest.field_res_users_enabled_notify_subtype_ids -msgid "Partner enabled subtypes" -msgstr "" - -#. module: mail_digest -#: model:ir.model,name:mail_digest.model_partner_notification_conf -msgid "Partner notification configuration" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_digest_template_id -msgid "Qweb mail template" -msgstr "" - -#. module: mail_digest -#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state -msgid "Status" -msgstr "" - -#. module: mail_digest -#: selection:res.partner,notify_frequency:0 -msgid "Weekly" -msgstr "" - -#. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 -#, python-format -msgid "Weekly update" -msgstr "" - -#. module: mail_digest -#: sql_constraint:partner.notification.conf:0 -msgid "You can have only one configuration per subtype!" -msgstr "" - -#. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 -#, python-format -msgid "You must pass a template or set one on the digest record." -msgstr "" - diff --git a/mail_full_expand/i18n/mail_full_expand.pot b/mail_full_expand/i18n/mail_full_expand.pot deleted file mode 100644 index 6b6e4dd9..00000000 --- a/mail_full_expand/i18n/mail_full_expand.pot +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * mail_full_expand -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0-20150814\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-14 08:16+0000\n" -"PO-Revision-Date: 2015-09-14 08:16+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: mail_full_expand -#. openerp-web -#: code:addons/mail_full_expand/static/src/xml/mail_full_expand.xml:10 -#, python-format -msgid "Fully expand" -msgstr "" - -#. module: mail_full_expand -#: view:mail.message:mail_full_expand.view -msgid "Message" -msgstr "" - -#. module: mail_full_expand -#: model:ir.actions.act_window,name:mail_full_expand.act_window -msgid "Read Full Email" -msgstr "" - From 68e49f814c7961dd8b6bdcf2c172f75caddf96f5 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:36 +0000 Subject: [PATCH 20/86] [UPD] Update base_search_mail_content.pot --- base_search_mail_content/i18n/am.po | 24 ++++++--- base_search_mail_content/i18n/ar.po | 27 +++++++--- .../i18n/base_search_mail_content.pot | 52 +++++++++++++++++++ base_search_mail_content/i18n/bg.po | 24 ++++++--- base_search_mail_content/i18n/bs.po | 27 +++++++--- base_search_mail_content/i18n/ca.po | 24 ++++++--- base_search_mail_content/i18n/cs.po | 24 ++++++--- base_search_mail_content/i18n/da.po | 24 ++++++--- base_search_mail_content/i18n/de.po | 24 ++++++--- base_search_mail_content/i18n/el_GR.po | 27 +++++++--- base_search_mail_content/i18n/en_GB.po | 27 +++++++--- base_search_mail_content/i18n/es.po | 4 +- base_search_mail_content/i18n/es_CR.po | 27 +++++++--- base_search_mail_content/i18n/es_EC.po | 27 +++++++--- base_search_mail_content/i18n/es_MX.po | 27 +++++++--- base_search_mail_content/i18n/es_VE.po | 27 +++++++--- base_search_mail_content/i18n/et.po | 24 ++++++--- base_search_mail_content/i18n/eu.po | 24 ++++++--- base_search_mail_content/i18n/fi.po | 24 ++++++--- base_search_mail_content/i18n/fr.po | 24 ++++++--- base_search_mail_content/i18n/fr_CA.po | 27 +++++++--- base_search_mail_content/i18n/fr_CH.po | 27 +++++++--- base_search_mail_content/i18n/gl.po | 24 ++++++--- base_search_mail_content/i18n/hr.po | 27 +++++++--- base_search_mail_content/i18n/hr_HR.po | 30 ++++++++--- base_search_mail_content/i18n/hu.po | 24 ++++++--- base_search_mail_content/i18n/it.po | 24 ++++++--- base_search_mail_content/i18n/ja.po | 24 ++++++--- base_search_mail_content/i18n/lt.po | 27 +++++++--- base_search_mail_content/i18n/lv.po | 27 +++++++--- base_search_mail_content/i18n/mk.po | 24 ++++++--- base_search_mail_content/i18n/mn.po | 24 ++++++--- base_search_mail_content/i18n/nb.po | 27 +++++++--- base_search_mail_content/i18n/nb_NO.po | 27 +++++++--- base_search_mail_content/i18n/nl.po | 24 ++++++--- base_search_mail_content/i18n/nl_BE.po | 27 +++++++--- base_search_mail_content/i18n/pl.po | 27 +++++++--- base_search_mail_content/i18n/pt.po | 24 ++++++--- base_search_mail_content/i18n/pt_BR.po | 27 +++++++--- base_search_mail_content/i18n/pt_PT.po | 27 +++++++--- base_search_mail_content/i18n/ro.po | 27 +++++++--- base_search_mail_content/i18n/ru.po | 28 +++++++--- base_search_mail_content/i18n/sk.po | 24 ++++++--- base_search_mail_content/i18n/sl.po | 27 +++++++--- base_search_mail_content/i18n/sr@latin.po | 30 ++++++++--- base_search_mail_content/i18n/sv.po | 24 ++++++--- base_search_mail_content/i18n/th.po | 24 ++++++--- base_search_mail_content/i18n/tr.po | 24 ++++++--- base_search_mail_content/i18n/tr_TR.po | 27 +++++++--- base_search_mail_content/i18n/vi.po | 24 ++++++--- base_search_mail_content/i18n/zh_CN.po | 27 +++++++--- base_search_mail_content/i18n/zh_TW.po | 27 +++++++--- 52 files changed, 1013 insertions(+), 331 deletions(-) create mode 100644 base_search_mail_content/i18n/base_search_mail_content.pot diff --git a/base_search_mail_content/i18n/am.po b/base_search_mail_content/i18n/am.po index 95bffa33..ae232547 100644 --- a/base_search_mail_content/i18n/am.po +++ b/base_search_mail_content/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "ተባባሪ" +#~ msgid "Partner" +#~ msgstr "ተባባሪ" diff --git a/base_search_mail_content/i18n/ar.po b/base_search_mail_content/i18n/ar.po index 522206a8..8c59230d 100644 --- a/base_search_mail_content/i18n/ar.po +++ b/base_search_mail_content/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "الشريك" +#~ msgid "Partner" +#~ msgstr "الشريك" diff --git a/base_search_mail_content/i18n/base_search_mail_content.pot b/base_search_mail_content/i18n/base_search_mail_content.pot new file mode 100644 index 00000000..01271719 --- /dev/null +++ b/base_search_mail_content/i18n/base_search_mail_content.pot @@ -0,0 +1,52 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_search_mail_content +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: base_search_mail_content +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form +#: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_tree +msgid "\"You can either select a field of type 'text', 'char' or 'html'.\"" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model,name:base_search_mail_content.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content +msgid "Message Content" +msgstr "" + +#. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content +msgid "Message content, to be used only in searches" +msgstr "" + diff --git a/base_search_mail_content/i18n/bg.po b/base_search_mail_content/i18n/bg.po index 9f27803b..4a225de9 100644 --- a/base_search_mail_content/i18n/bg.po +++ b/base_search_mail_content/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Партньор" +#~ msgid "Partner" +#~ msgstr "Партньор" diff --git a/base_search_mail_content/i18n/bs.po b/base_search_mail_content/i18n/bs.po index f0dad9dd..3ce99689 100644 --- a/base_search_mail_content/i18n/bs.po +++ b/base_search_mail_content/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/ca.po b/base_search_mail_content/i18n/ca.po index 9758d9c6..b334be18 100644 --- a/base_search_mail_content/i18n/ca.po +++ b/base_search_mail_content/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-28 08:19+0000\n" "Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: base_search_mail_content @@ -31,18 +31,30 @@ msgid "Email Thread" msgstr "Tema del Correu electrònic " #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/cs.po b/base_search_mail_content/i18n/cs.po index 89358cca..430a7417 100644 --- a/base_search_mail_content/i18n/cs.po +++ b/base_search_mail_content/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Společník" +#~ msgid "Partner" +#~ msgstr "Společník" diff --git a/base_search_mail_content/i18n/da.po b/base_search_mail_content/i18n/da.po index 2ece7d97..a9af2432 100644 --- a/base_search_mail_content/i18n/da.po +++ b/base_search_mail_content/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/de.po b/base_search_mail_content/i18n/de.po index be4a1988..e8ea239f 100644 --- a/base_search_mail_content/i18n/de.po +++ b/base_search_mail_content/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-28 08:19+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: base_search_mail_content @@ -31,18 +31,30 @@ msgid "Email Thread" msgstr "Email-Thread" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "Mitteilungsinhalt" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "Mitteilungsinhalt, nur zur Verwendung in Suche" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/el_GR.po b/base_search_mail_content/i18n/el_GR.po index af5040ec..3cbe031a 100644 --- a/base_search_mail_content/i18n/el_GR.po +++ b/base_search_mail_content/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Συνεργάτης" +#~ msgid "Partner" +#~ msgstr "Συνεργάτης" diff --git a/base_search_mail_content/i18n/en_GB.po b/base_search_mail_content/i18n/en_GB.po index f6d4da5d..a1baeab2 100644 --- a/base_search_mail_content/i18n/en_GB.po +++ b/base_search_mail_content/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/es.po b/base_search_mail_content/i18n/es.po index f833da5a..9eb2b522 100644 --- a/base_search_mail_content/i18n/es.po +++ b/base_search_mail_content/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # enjolras , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: base_search_mail_content diff --git a/base_search_mail_content/i18n/es_CR.po b/base_search_mail_content/i18n/es_CR.po index 3a626e62..e210abd7 100644 --- a/base_search_mail_content/i18n/es_CR.po +++ b/base_search_mail_content/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_EC.po b/base_search_mail_content/i18n/es_EC.po index e376d51b..c489b2eb 100644 --- a/base_search_mail_content/i18n/es_EC.po +++ b/base_search_mail_content/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_MX.po b/base_search_mail_content/i18n/es_MX.po index 414cabb1..31d77355 100644 --- a/base_search_mail_content/i18n/es_MX.po +++ b/base_search_mail_content/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/es_VE.po b/base_search_mail_content/i18n/es_VE.po index 702c5544..b528366f 100644 --- a/base_search_mail_content/i18n/es_VE.po +++ b/base_search_mail_content/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/et.po b/base_search_mail_content/i18n/et.po index b3b99c8a..a6613dcb 100644 --- a/base_search_mail_content/i18n/et.po +++ b/base_search_mail_content/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/eu.po b/base_search_mail_content/i18n/eu.po index bb3ffe40..f0657577 100644 --- a/base_search_mail_content/i18n/eu.po +++ b/base_search_mail_content/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # Esther Martín Menéndez , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-02-18 07:47+0000\n" "Last-Translator: Esther Martín Menéndez , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Kidea" +#~ msgid "Partner" +#~ msgstr "Kidea" diff --git a/base_search_mail_content/i18n/fi.po b/base_search_mail_content/i18n/fi.po index 4aa9906e..de8b166a 100644 --- a/base_search_mail_content/i18n/fi.po +++ b/base_search_mail_content/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Kumppani" +#~ msgid "Partner" +#~ msgstr "Kumppani" diff --git a/base_search_mail_content/i18n/fr.po b/base_search_mail_content/i18n/fr.po index 12657a32..562966ff 100644 --- a/base_search_mail_content/i18n/fr.po +++ b/base_search_mail_content/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # Zwygart , 2017 # OCA Transbot , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: base_search_mail_content @@ -31,18 +31,30 @@ msgid "Email Thread" msgstr "Discussion de courriel" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/fr_CA.po b/base_search_mail_content/i18n/fr_CA.po index b72abade..6aeeb82f 100644 --- a/base_search_mail_content/i18n/fr_CA.po +++ b/base_search_mail_content/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/fr_CH.po b/base_search_mail_content/i18n/fr_CH.po index 1578304d..ee84d7be 100644 --- a/base_search_mail_content/i18n/fr_CH.po +++ b/base_search_mail_content/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partenaire" +#~ msgid "Partner" +#~ msgstr "Partenaire" diff --git a/base_search_mail_content/i18n/gl.po b/base_search_mail_content/i18n/gl.po index 99f034eb..b5e58079 100644 --- a/base_search_mail_content/i18n/gl.po +++ b/base_search_mail_content/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Empresa" +#~ msgid "Partner" +#~ msgstr "Empresa" diff --git a/base_search_mail_content/i18n/hr.po b/base_search_mail_content/i18n/hr.po index a44084f8..358fad60 100644 --- a/base_search_mail_content/i18n/hr.po +++ b/base_search_mail_content/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/hr_HR.po b/base_search_mail_content/i18n/hr_HR.po index 84edb935..81a07570 100644 --- a/base_search_mail_content/i18n/hr_HR.po +++ b/base_search_mail_content/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +32,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/hu.po b/base_search_mail_content/i18n/hu.po index b2091e72..8a4fa202 100644 --- a/base_search_mail_content/i18n/hu.po +++ b/base_search_mail_content/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/it.po b/base_search_mail_content/i18n/it.po index 579376db..d55f5ca2 100644 --- a/base_search_mail_content/i18n/it.po +++ b/base_search_mail_content/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "Discussione Email" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/ja.po b/base_search_mail_content/i18n/ja.po index 46f35eb2..719afa50 100644 --- a/base_search_mail_content/i18n/ja.po +++ b/base_search_mail_content/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "パートナ" +#~ msgid "Partner" +#~ msgstr "パートナ" diff --git a/base_search_mail_content/i18n/lt.po b/base_search_mail_content/i18n/lt.po index 378c01e6..6519e61c 100644 --- a/base_search_mail_content/i18n/lt.po +++ b/base_search_mail_content/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partneris" +#~ msgid "Partner" +#~ msgstr "Partneris" diff --git a/base_search_mail_content/i18n/lv.po b/base_search_mail_content/i18n/lv.po index 082dbfc6..dd063f3e 100644 --- a/base_search_mail_content/i18n/lv.po +++ b/base_search_mail_content/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partneris" +#~ msgid "Partner" +#~ msgstr "Partneris" diff --git a/base_search_mail_content/i18n/mk.po b/base_search_mail_content/i18n/mk.po index 55c15686..d9bc720e 100644 --- a/base_search_mail_content/i18n/mk.po +++ b/base_search_mail_content/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Партнер" +#~ msgid "Partner" +#~ msgstr "Партнер" diff --git a/base_search_mail_content/i18n/mn.po b/base_search_mail_content/i18n/mn.po index 4faaf75c..ed23a842 100644 --- a/base_search_mail_content/i18n/mn.po +++ b/base_search_mail_content/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Харилцагч" +#~ msgid "Partner" +#~ msgstr "Харилцагч" diff --git a/base_search_mail_content/i18n/nb.po b/base_search_mail_content/i18n/nb.po index 22095ad7..5962ef6f 100644 --- a/base_search_mail_content/i18n/nb.po +++ b/base_search_mail_content/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/nb_NO.po b/base_search_mail_content/i18n/nb_NO.po index e02c666d..d625467a 100644 --- a/base_search_mail_content/i18n/nb_NO.po +++ b/base_search_mail_content/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/nl.po b/base_search_mail_content/i18n/nl.po index a6fad0dc..543b8ec2 100644 --- a/base_search_mail_content/i18n/nl.po +++ b/base_search_mail_content/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Relatie" +#~ msgid "Partner" +#~ msgstr "Relatie" diff --git a/base_search_mail_content/i18n/nl_BE.po b/base_search_mail_content/i18n/nl_BE.po index 47ff9992..1df27ca5 100644 --- a/base_search_mail_content/i18n/nl_BE.po +++ b/base_search_mail_content/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Relatie" +#~ msgid "Partner" +#~ msgstr "Relatie" diff --git a/base_search_mail_content/i18n/pl.po b/base_search_mail_content/i18n/pl.po index 96059ea2..51356b51 100644 --- a/base_search_mail_content/i18n/pl.po +++ b/base_search_mail_content/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #. module: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/pt.po b/base_search_mail_content/i18n/pt.po index ee033193..9d4e43ec 100644 --- a/base_search_mail_content/i18n/pt.po +++ b/base_search_mail_content/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Entidade" +#~ msgid "Partner" +#~ msgstr "Entidade" diff --git a/base_search_mail_content/i18n/pt_BR.po b/base_search_mail_content/i18n/pt_BR.po index 8da92603..210ac795 100644 --- a/base_search_mail_content/i18n/pt_BR.po +++ b/base_search_mail_content/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "Processo Email" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#~ msgid "Partner" +#~ msgstr "Parceiro" diff --git a/base_search_mail_content/i18n/pt_PT.po b/base_search_mail_content/i18n/pt_PT.po index 6cf743b7..256797ef 100644 --- a/base_search_mail_content/i18n/pt_PT.po +++ b/base_search_mail_content/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # Pedro Castro Silva , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_search_mail_content @@ -31,18 +32,30 @@ msgid "Email Thread" msgstr "Tópico de Email" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Parceiro" +#~ msgid "Partner" +#~ msgstr "Parceiro" diff --git a/base_search_mail_content/i18n/ro.po b/base_search_mail_content/i18n/ro.po index 34501b0c..2c073fe3 100644 --- a/base_search_mail_content/i18n/ro.po +++ b/base_search_mail_content/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partener" +#~ msgid "Partner" +#~ msgstr "Partener" diff --git a/base_search_mail_content/i18n/ru.po b/base_search_mail_content/i18n/ru.po index b26a691d..4d9fa721 100644 --- a/base_search_mail_content/i18n/ru.po +++ b/base_search_mail_content/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +32,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Контрагент" +#~ msgid "Partner" +#~ msgstr "Контрагент" diff --git a/base_search_mail_content/i18n/sk.po b/base_search_mail_content/i18n/sk.po index 1cd938b4..0423a057 100644 --- a/base_search_mail_content/i18n/sk.po +++ b/base_search_mail_content/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # gebri , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: gebri , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/sl.po b/base_search_mail_content/i18n/sl.po index 4777adb6..5b639324 100644 --- a/base_search_mail_content/i18n/sl.po +++ b/base_search_mail_content/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "E-poštna nit" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/sr@latin.po b/base_search_mail_content/i18n/sr@latin.po index c87e143d..225b5598 100644 --- a/base_search_mail_content/i18n/sr@latin.po +++ b/base_search_mail_content/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\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" +"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: base_search_mail_content #: model:ir.ui.view,arch_db:base_search_mail_content.trgm_index_view_form @@ -30,18 +32,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Partner" +#~ msgid "Partner" +#~ msgstr "Partner" diff --git a/base_search_mail_content/i18n/sv.po b/base_search_mail_content/i18n/sv.po index 95524cbe..839061d5 100644 --- a/base_search_mail_content/i18n/sv.po +++ b/base_search_mail_content/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Företag" +#~ msgid "Partner" +#~ msgstr "Företag" diff --git a/base_search_mail_content/i18n/th.po b/base_search_mail_content/i18n/th.po index 7a545243..eb89fcea 100644 --- a/base_search_mail_content/i18n/th.po +++ b/base_search_mail_content/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "พาร์ทเนอร์" +#~ msgid "Partner" +#~ msgstr "พาร์ทเนอร์" diff --git a/base_search_mail_content/i18n/tr.po b/base_search_mail_content/i18n/tr.po index 98f6cfde..6e2541f0 100644 --- a/base_search_mail_content/i18n/tr.po +++ b/base_search_mail_content/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "Eposta konuşması" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "İş Ortağı" +#~ msgid "Partner" +#~ msgstr "İş Ortağı" diff --git a/base_search_mail_content/i18n/tr_TR.po b/base_search_mail_content/i18n/tr_TR.po index 38a65d5c..e4c85c8d 100644 --- a/base_search_mail_content/i18n/tr_TR.po +++ b/base_search_mail_content/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Ortak" +#~ msgid "Partner" +#~ msgstr "Ortak" diff --git a/base_search_mail_content/i18n/vi.po b/base_search_mail_content/i18n/vi.po index 2bc65c6b..9f2dc1e4 100644 --- a/base_search_mail_content/i18n/vi.po +++ b/base_search_mail_content/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +30,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "Đối tác" +#~ msgid "Partner" +#~ msgstr "Đối tác" diff --git a/base_search_mail_content/i18n/zh_CN.po b/base_search_mail_content/i18n/zh_CN.po index ad1c77a5..cee1ed88 100644 --- a/base_search_mail_content/i18n/zh_CN.po +++ b/base_search_mail_content/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "业务伙伴" +#~ msgid "Partner" +#~ msgstr "业务伙伴" diff --git a/base_search_mail_content/i18n/zh_TW.po b/base_search_mail_content/i18n/zh_TW.po index 28b073df..a22d9729 100644 --- a/base_search_mail_content/i18n/zh_TW.po +++ b/base_search_mail_content/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_search_mail_content -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-18 03:39+0000\n" "PO-Revision-Date: 2017-01-18 03:39+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: base_search_mail_content @@ -30,18 +31,30 @@ msgid "Email Thread" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,field_description:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,field_description:base_search_mail_content.field_res_users_message_content msgid "Message Content" msgstr "" #. module: base_search_mail_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_event_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_event_registration_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_channel_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_mass_mailing_contact_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_test_message_content #: model:ir.model.fields,help:base_search_mail_content.field_mail_thread_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_mail_unsubscription_message_content #: model:ir.model.fields,help:base_search_mail_content.field_res_partner_message_content +#: model:ir.model.fields,help:base_search_mail_content.field_res_users_message_content msgid "Message content, to be used only in searches" msgstr "" -#. module: base_search_mail_content -#: model:ir.model,name:base_search_mail_content.model_res_partner -msgid "Partner" -msgstr "夥伴" +#~ msgid "Partner" +#~ msgstr "夥伴" From 9e63619ea73641059eba1b05a042d7f8627b717e Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:36 +0000 Subject: [PATCH 21/86] [UPD] Update email_template_qweb.pot --- email_template_qweb/i18n/de.po | 4 +- .../i18n/email_template_qweb.pot | 65 +++++++++++++++++++ email_template_qweb/i18n/es.po | 4 +- email_template_qweb/i18n/es_MX.po | 12 ++-- email_template_qweb/i18n/fr.po | 4 +- email_template_qweb/i18n/hr.po | 7 +- email_template_qweb/i18n/it.po | 4 +- email_template_qweb/i18n/nl_NL.po | 7 +- email_template_qweb/i18n/pt_BR.po | 7 +- email_template_qweb/i18n/zh_CN.po | 12 +++- 10 files changed, 98 insertions(+), 28 deletions(-) create mode 100644 email_template_qweb/i18n/email_template_qweb.pot diff --git a/email_template_qweb/i18n/de.po b/email_template_qweb/i18n/de.po index 6b9c4e06..796cd8f2 100644 --- a/email_template_qweb/i18n/de.po +++ b/email_template_qweb/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-02-10 11:20+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: email_template_qweb diff --git a/email_template_qweb/i18n/email_template_qweb.pot b/email_template_qweb/i18n/email_template_qweb.pot new file mode 100644 index 00000000..c6f324f1 --- /dev/null +++ b/email_template_qweb/i18n/email_template_qweb.pot @@ -0,0 +1,65 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * email_template_qweb +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_type +#: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_type +msgid "Body templating engine" +msgstr "" + +#. module: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_view_id +#: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_view_id +msgid "Body view" +msgstr "" + +#. module: email_template_qweb +#: model:ir.ui.view,arch_db:email_template_qweb.view_email_template_demo1 +msgid "Dear" +msgstr "" + +#. module: email_template_qweb +#: model:ir.model,name:email_template_qweb.model_mail_template +msgid "Email Templates" +msgstr "" + +#. module: email_template_qweb +#: selection:email_template.preview,body_type:0 +#: selection:mail.template,body_type:0 +msgid "Jinja2" +msgstr "" + +#. module: email_template_qweb +#: selection:email_template.preview,body_type:0 +#: selection:mail.template,body_type:0 +msgid "QWeb" +msgstr "" + +#. module: email_template_qweb +#: model:mail.template,subject:email_template_qweb.email_template_demo1 +msgid "QWeb demo email" +msgstr "" + +#. module: email_template_qweb +#: model:ir.ui.view,arch_db:email_template_qweb.view_email_template_demo1 +msgid "This is an email template using qweb." +msgstr "" + +#. module: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_view_arch +#: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_view_arch +msgid "View Architecture" +msgstr "" + diff --git a/email_template_qweb/i18n/es.po b/email_template_qweb/i18n/es.po index 3011e2a5..adede8df 100644 --- a/email_template_qweb/i18n/es.po +++ b/email_template_qweb/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-02-10 11:20+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: email_template_qweb diff --git a/email_template_qweb/i18n/es_MX.po b/email_template_qweb/i18n/es_MX.po index 3c19dfba..acb1b66f 100644 --- a/email_template_qweb/i18n/es_MX.po +++ b/email_template_qweb/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-29 14:24+0000\n" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: email_template_qweb @@ -35,11 +36,6 @@ msgstr "Vista del cuerpo" msgid "Dear" msgstr "Querido" -#. module: email_template_qweb -#: model:ir.model,name:email_template_qweb.model_email_template_preview -msgid "Email Template Preview" -msgstr "" - #. module: email_template_qweb #: model:ir.model,name:email_template_qweb.model_mail_template msgid "Email Templates" diff --git a/email_template_qweb/i18n/fr.po b/email_template_qweb/i18n/fr.po index 5da88ee5..ce6d9fab 100644 --- a/email_template_qweb/i18n/fr.po +++ b/email_template_qweb/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # Quentin THEURET , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 09:45+0000\n" "Last-Translator: Quentin THEURET , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: email_template_qweb diff --git a/email_template_qweb/i18n/hr.po b/email_template_qweb/i18n/hr.po index f6e87189..2b6d33c3 100644 --- a/email_template_qweb/i18n/hr.po +++ b/email_template_qweb/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-02-10 11:20+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: email_template_qweb #: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_type diff --git a/email_template_qweb/i18n/it.po b/email_template_qweb/i18n/it.po index 83d2f14a..749e0ddb 100644 --- a/email_template_qweb/i18n/it.po +++ b/email_template_qweb/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # OCA Transbot , 2016 # Marius Marolla , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: email_template_qweb diff --git a/email_template_qweb/i18n/nl_NL.po b/email_template_qweb/i18n/nl_NL.po index ada058bd..73513aa4 100644 --- a/email_template_qweb/i18n/nl_NL.po +++ b/email_template_qweb/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-20 08:36+0000\n" "PO-Revision-Date: 2017-05-20 08:36+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: email_template_qweb diff --git a/email_template_qweb/i18n/pt_BR.po b/email_template_qweb/i18n/pt_BR.po index 1251ad98..9c9801e3 100644 --- a/email_template_qweb/i18n/pt_BR.po +++ b/email_template_qweb/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # falexandresilva , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:50+0000\n" "PO-Revision-Date: 2017-07-22 00:50+0000\n" "Last-Translator: falexandresilva , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: email_template_qweb diff --git a/email_template_qweb/i18n/zh_CN.po b/email_template_qweb/i18n/zh_CN.po index a3319fc1..d37c5c5e 100644 --- a/email_template_qweb/i18n/zh_CN.po +++ b/email_template_qweb/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * email_template_qweb -# +# # Translators: # Jeffery Chenn , 2016 msgid "" @@ -11,19 +11,22 @@ msgstr "" "POT-Creation-Date: 2016-09-02 00:46+0000\n" "PO-Revision-Date: 2016-09-04 05:55+0000\n" "Last-Translator: Jeffery Chenn \n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-9-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-9-0/" +"language/zh_CN/)\n" +"Language: 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: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_type #: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_type msgid "Body templating engine" msgstr "" #. module: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_view_id #: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_view_id msgid "Body view" msgstr "" @@ -39,11 +42,13 @@ msgid "Email Templates" msgstr "Email 模板" #. module: email_template_qweb +#: selection:email_template.preview,body_type:0 #: selection:mail.template,body_type:0 msgid "Jinja2" msgstr "" #. module: email_template_qweb +#: selection:email_template.preview,body_type:0 #: selection:mail.template,body_type:0 msgid "QWeb" msgstr "" @@ -59,6 +64,7 @@ msgid "This is an email template using qweb." msgstr "" #. module: email_template_qweb +#: model:ir.model.fields,field_description:email_template_qweb.field_email_template_preview_body_view_arch #: model:ir.model.fields,field_description:email_template_qweb.field_mail_template_body_view_arch msgid "View Architecture" msgstr "" From 800695bf9b796f4b4b83a8190bc45c21d50db994 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:37 +0000 Subject: [PATCH 22/86] [UPD] Update mail_as_letter.pot --- mail_as_letter/i18n/ca.po | 4 +- mail_as_letter/i18n/de.po | 4 +- mail_as_letter/i18n/es.po | 4 +- mail_as_letter/i18n/es_CO.po | 7 ++-- mail_as_letter/i18n/fr.po | 4 +- mail_as_letter/i18n/hr.po | 7 ++-- mail_as_letter/i18n/it.po | 4 +- mail_as_letter/i18n/mail_as_letter.pot | 51 ++++++++++++++++++++++++++ mail_as_letter/i18n/nl_NL.po | 7 ++-- mail_as_letter/i18n/pt_BR.po | 7 ++-- mail_as_letter/i18n/sl.po | 7 ++-- mail_as_letter/i18n/zh_CN.po | 7 ++-- 12 files changed, 85 insertions(+), 28 deletions(-) create mode 100644 mail_as_letter/i18n/mail_as_letter.pot diff --git a/mail_as_letter/i18n/ca.po b/mail_as_letter/i18n/ca.po index 5a1e690d..77451c06 100644 --- a/mail_as_letter/i18n/ca.po +++ b/mail_as_letter/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-09-02 00:46+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/de.po b/mail_as_letter/i18n/de.po index b1beae08..9e7509ba 100644 --- a/mail_as_letter/i18n/de.po +++ b/mail_as_letter/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 # Niki Waibel , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: Niki Waibel , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/es.po b/mail_as_letter/i18n/es.po index f574fcd0..e1bce4b6 100644 --- a/mail_as_letter/i18n/es.po +++ b/mail_as_letter/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 # Pedro M. Baeza , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: Pedro M. Baeza , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/es_CO.po b/mail_as_letter/i18n/es_CO.po index 72d20bce..a3cbe270 100644 --- a/mail_as_letter/i18n/es_CO.po +++ b/mail_as_letter/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-09-02 00:46+0000\n" "PO-Revision-Date: 2016-09-02 00:46+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_as_letter diff --git a/mail_as_letter/i18n/fr.po b/mail_as_letter/i18n/fr.po index e4133557..06f430c8 100644 --- a/mail_as_letter/i18n/fr.po +++ b/mail_as_letter/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 # leemannd , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-14 19:07+0000\n" "Last-Translator: leemannd , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/hr.po b/mail_as_letter/i18n/hr.po index a12c45c9..1332e2bc 100644 --- a/mail_as_letter/i18n/hr.po +++ b/mail_as_letter/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 # Bole , 2016 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: Bole , 2016\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_as_letter #: model:ir.ui.view,arch_db:mail_as_letter.mail_compose_message_form_view diff --git a/mail_as_letter/i18n/it.po b/mail_as_letter/i18n/it.po index 69dc87c0..05250eb3 100644 --- a/mail_as_letter/i18n/it.po +++ b/mail_as_letter/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # Marius Marolla , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/mail_as_letter.pot b/mail_as_letter/i18n/mail_as_letter.pot new file mode 100644 index 00000000..c41c81a4 --- /dev/null +++ b/mail_as_letter/i18n/mail_as_letter.pot @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_as_letter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_as_letter +#: model:ir.ui.view,arch_db:mail_as_letter.mail_compose_message_form_view +msgid "Download Letter" +msgstr "" + +#. module: mail_as_letter +#: model:ir.model,name:mail_as_letter.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: mail_as_letter +#: model:ir.model.fields,field_description:mail_as_letter.field_mail_compose_message_partner_count +msgid "Number of partners" +msgstr "" + +#. module: mail_as_letter +#: model:ir.ui.view,arch_db:mail_as_letter.mail_compose_message_form_view +msgid "Save as a PDF file" +msgstr "" + +#. module: mail_as_letter +#: model:ir.ui.view,arch_db:mail_as_letter.mail_print +msgid "Subject :" +msgstr "" + +#. module: mail_as_letter +#: code:addons/mail_as_letter/wizards/mail_compose_message.py:31 +#, python-format +msgid "There must be only one recipient." +msgstr "" + +#. module: mail_as_letter +#: model:ir.actions.report.xml,name:mail_as_letter.qweb_mail_pdf_export +msgid "mail_as_letter" +msgstr "" + diff --git a/mail_as_letter/i18n/nl_NL.po b/mail_as_letter/i18n/nl_NL.po index 1a9ef577..218cbb7c 100644 --- a/mail_as_letter/i18n/nl_NL.po +++ b/mail_as_letter/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-20 08:36+0000\n" "PO-Revision-Date: 2017-05-20 08:36+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_as_letter diff --git a/mail_as_letter/i18n/pt_BR.po b/mail_as_letter/i18n/pt_BR.po index c47ac413..20bb053b 100644 --- a/mail_as_letter/i18n/pt_BR.po +++ b/mail_as_letter/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-09-02 00:46+0000\n" "PO-Revision-Date: 2016-09-02 00:46+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_as_letter diff --git a/mail_as_letter/i18n/sl.po b/mail_as_letter/i18n/sl.po index d3284532..f77c3c75 100644 --- a/mail_as_letter/i18n/sl.po +++ b/mail_as_letter/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-09-02 00:46+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_as_letter #: model:ir.ui.view,arch_db:mail_as_letter.mail_compose_message_form_view diff --git a/mail_as_letter/i18n/zh_CN.po b/mail_as_letter/i18n/zh_CN.po index 14d70c8a..24104961 100644 --- a/mail_as_letter/i18n/zh_CN.po +++ b/mail_as_letter/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_as_letter -# +# # Translators: # Jeffery Chenn , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-09-02 00:46+0000\n" "PO-Revision-Date: 2016-09-02 00:46+0000\n" "Last-Translator: Jeffery Chenn , 2016\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_as_letter From db08a298c777e4e70af58627101796f3ae016bd3 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:39 +0000 Subject: [PATCH 23/86] [UPD] Update mail_attach_existing_attachment.pot --- mail_attach_existing_attachment/i18n/ca.po | 7 +++-- mail_attach_existing_attachment/i18n/de.po | 4 +-- mail_attach_existing_attachment/i18n/es.po | 4 +-- mail_attach_existing_attachment/i18n/es_CO.po | 7 +++-- mail_attach_existing_attachment/i18n/fr.po | 4 +-- mail_attach_existing_attachment/i18n/hr.po | 10 ++++--- mail_attach_existing_attachment/i18n/it.po | 4 +-- .../i18n/mail_attach_existing_attachment.pot | 30 +++++++++++++++++++ mail_attach_existing_attachment/i18n/pt_BR.po | 7 +++-- mail_attach_existing_attachment/i18n/sl.po | 10 ++++--- mail_attach_existing_attachment/i18n/zh_CN.po | 7 +++-- 11 files changed, 66 insertions(+), 28 deletions(-) create mode 100644 mail_attach_existing_attachment/i18n/mail_attach_existing_attachment.pot diff --git a/mail_attach_existing_attachment/i18n/ca.po b/mail_attach_existing_attachment/i18n/ca.po index f5334aca..78413f42 100644 --- a/mail_attach_existing_attachment/i18n/ca.po +++ b/mail_attach_existing_attachment/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-12 23:57+0000\n" "Last-Translator: <>\n" -"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-9-0/language/ca/)\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-9-0/language/" +"ca/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/de.po b/mail_attach_existing_attachment/i18n/de.po index 02227301..2c6e2632 100644 --- a/mail_attach_existing_attachment/i18n/de.po +++ b/mail_attach_existing_attachment/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # OCA Transbot , 2016 # Niki Waibel , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: Niki Waibel , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/es.po b/mail_attach_existing_attachment/i18n/es.po index 015f08a3..95e6980e 100644 --- a/mail_attach_existing_attachment/i18n/es.po +++ b/mail_attach_existing_attachment/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # OCA Transbot , 2017 # Pedro M. Baeza , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Pedro M. Baeza , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/es_CO.po b/mail_attach_existing_attachment/i18n/es_CO.po index 0d62d5fc..25924b96 100644 --- a/mail_attach_existing_attachment/i18n/es_CO.po +++ b/mail_attach_existing_attachment/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-12 23:57+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-social-9-0/language/es_CO/)\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"social-9-0/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" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/fr.po b/mail_attach_existing_attachment/i18n/fr.po index 0220407d..a420ef1b 100644 --- a/mail_attach_existing_attachment/i18n/fr.po +++ b/mail_attach_existing_attachment/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # OCA Transbot , 2016 # Quentin THEURET , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 09:45+0000\n" "Last-Translator: Quentin THEURET , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/hr.po b/mail_attach_existing_attachment/i18n/hr.po index 49b0ed73..5ceb5fb3 100644 --- a/mail_attach_existing_attachment/i18n/hr.po +++ b/mail_attach_existing_attachment/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # Bole , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-14 11:29+0000\n" "Last-Translator: Bole \n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-9-0/language/hr/)\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-9-0/" +"language/hr/)\n" +"Language: 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" +"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: mail_attach_existing_attachment #: model:ir.model.fields,field_description:mail_attach_existing_attachment.field_mail_compose_message_object_attachment_ids diff --git a/mail_attach_existing_attachment/i18n/it.po b/mail_attach_existing_attachment/i18n/it.po index ed7ee33a..6930c7db 100644 --- a/mail_attach_existing_attachment/i18n/it.po +++ b/mail_attach_existing_attachment/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # OCA Transbot , 2016 # Marius Marolla , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/mail_attach_existing_attachment.pot b/mail_attach_existing_attachment/i18n/mail_attach_existing_attachment.pot new file mode 100644 index 00000000..1e018d08 --- /dev/null +++ b/mail_attach_existing_attachment/i18n/mail_attach_existing_attachment.pot @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_attach_existing_attachment +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_attach_existing_attachment +#: model:ir.model.fields,field_description:mail_attach_existing_attachment.field_mail_compose_message_object_attachment_ids +msgid "Attachments" +msgstr "" + +#. module: mail_attach_existing_attachment +#: model:ir.model.fields,field_description:mail_attach_existing_attachment.field_mail_compose_message_can_attach_attachment +msgid "Can Attach Attachment" +msgstr "" + +#. module: mail_attach_existing_attachment +#: model:ir.model,name:mail_attach_existing_attachment.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + diff --git a/mail_attach_existing_attachment/i18n/pt_BR.po b/mail_attach_existing_attachment/i18n/pt_BR.po index df34c99e..3205cc48 100644 --- a/mail_attach_existing_attachment/i18n/pt_BR.po +++ b/mail_attach_existing_attachment/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # Armando Vulcano Junior , 2015 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-13 03:11+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-social-9-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"social-9-0/language/pt_BR/)\n" +"Language: 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: mail_attach_existing_attachment diff --git a/mail_attach_existing_attachment/i18n/sl.po b/mail_attach_existing_attachment/i18n/sl.po index 2899f71d..76343af0 100644 --- a/mail_attach_existing_attachment/i18n/sl.po +++ b/mail_attach_existing_attachment/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # Matjaž Mozetič , 2015 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-13 03:11+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-9-0/language/sl/)\n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-9-0/" +"language/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_attach_existing_attachment #: model:ir.model.fields,field_description:mail_attach_existing_attachment.field_mail_compose_message_object_attachment_ids diff --git a/mail_attach_existing_attachment/i18n/zh_CN.po b/mail_attach_existing_attachment/i18n/zh_CN.po index 49469d78..2fdf0f0a 100644 --- a/mail_attach_existing_attachment/i18n/zh_CN.po +++ b/mail_attach_existing_attachment/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_attach_existing_attachment -# +# # Translators: # Jeffery Chenn , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-09-02 00:46+0000\n" "PO-Revision-Date: 2016-09-04 05:54+0000\n" "Last-Translator: Jeffery Chenn \n" -"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-9-0/language/zh_CN/)\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-social-9-0/" +"language/zh_CN/)\n" +"Language: 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: mail_attach_existing_attachment From 4e7807edfed4f72bcc1421fa387a3c4839972066 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:40 +0000 Subject: [PATCH 24/86] [UPD] Update mail_debrand.pot --- mail_debrand/i18n/de.po | 4 ++-- mail_debrand/i18n/es.po | 4 ++-- mail_debrand/i18n/es_MX.po | 7 ++++--- mail_debrand/i18n/fr.po | 4 ++-- mail_debrand/i18n/hr.po | 7 ++++--- mail_debrand/i18n/it.po | 4 ++-- mail_debrand/i18n/mail_debrand.pot | 32 ++++++++++++++++++++++++++++++ mail_debrand/i18n/nl_NL.po | 7 ++++--- mail_debrand/i18n/zh_CN.po | 7 ++++--- 9 files changed, 56 insertions(+), 20 deletions(-) create mode 100644 mail_debrand/i18n/mail_debrand.pot diff --git a/mail_debrand/i18n/de.po b/mail_debrand/i18n/de.po index de8cfc66..7518821f 100644 --- a/mail_debrand/i18n/de.po +++ b/mail_debrand/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # Niki Waibel, 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: Niki Waibel, 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_debrand diff --git a/mail_debrand/i18n/es.po b/mail_debrand/i18n/es.po index d0eb1d65..23e72630 100644 --- a/mail_debrand/i18n/es.po +++ b/mail_debrand/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mail_debrand +# * mail_debrand # msgid "" msgstr "" @@ -10,6 +10,7 @@ msgstr "" "PO-Revision-Date: 2017-05-15 14:50+0000\n" "Last-Translator: <>\n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -31,4 +32,3 @@ msgstr "Odoo" #, python-format msgid "using" msgstr "usando" - diff --git a/mail_debrand/i18n/es_MX.po b/mail_debrand/i18n/es_MX.po index a3fe5465..f077ba99 100644 --- a/mail_debrand/i18n/es_MX.po +++ b/mail_debrand/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-24 03:51+0000\n" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mail_debrand diff --git a/mail_debrand/i18n/fr.po b/mail_debrand/i18n/fr.po index 0de790ba..b1004f96 100644 --- a/mail_debrand/i18n/fr.po +++ b/mail_debrand/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # Quentin THEURET , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_debrand diff --git a/mail_debrand/i18n/hr.po b/mail_debrand/i18n/hr.po index cd64b9c5..63625bb6 100644 --- a/mail_debrand/i18n/hr.po +++ b/mail_debrand/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_debrand #: model:ir.model,name:mail_debrand.model_mail_template diff --git a/mail_debrand/i18n/it.po b/mail_debrand/i18n/it.po index 2174c0bb..1d27691d 100644 --- a/mail_debrand/i18n/it.po +++ b/mail_debrand/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # Marius Marolla , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: Marius Marolla , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_debrand diff --git a/mail_debrand/i18n/mail_debrand.pot b/mail_debrand/i18n/mail_debrand.pot new file mode 100644 index 00000000..e2831efb --- /dev/null +++ b/mail_debrand/i18n/mail_debrand.pot @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_debrand +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_debrand +#: model:ir.model,name:mail_debrand.model_mail_template +msgid "Email Templates" +msgstr "" + +#. module: mail_debrand +#: code:addons/mail_debrand/models/mail_template.py:26 +#, python-format +msgid "Odoo" +msgstr "" + +#. module: mail_debrand +#: code:addons/mail_debrand/models/mail_template.py:25 +#, python-format +msgid "using" +msgstr "" + diff --git a/mail_debrand/i18n/nl_NL.po b/mail_debrand/i18n/nl_NL.po index ed30ddae..a08fc2a5 100644 --- a/mail_debrand/i18n/nl_NL.po +++ b/mail_debrand/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # Peter Hageman , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-24 03:51+0000\n" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: Peter Hageman , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_debrand diff --git a/mail_debrand/i18n/zh_CN.po b/mail_debrand/i18n/zh_CN.po index 60344b8a..6385d61c 100644 --- a/mail_debrand/i18n/zh_CN.po +++ b/mail_debrand/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_debrand -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-24 03:51+0000\n" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_debrand From 70beaede18dc118da20b395dea557359f133b307 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:41 +0000 Subject: [PATCH 25/86] [UPD] Update mail_digest.pot --- mail_digest/i18n/am.po | 37 +++++- mail_digest/i18n/ar.po | 37 +++++- mail_digest/i18n/bg.po | 37 +++++- mail_digest/i18n/bs.po | 37 +++++- mail_digest/i18n/ca.po | 37 +++++- mail_digest/i18n/ca_ES.po | 36 ++++- mail_digest/i18n/cs.po | 37 +++++- mail_digest/i18n/da.po | 37 +++++- mail_digest/i18n/de.po | 31 ++++- mail_digest/i18n/el_GR.po | 37 +++++- mail_digest/i18n/en_GB.po | 37 +++++- mail_digest/i18n/es.po | 31 ++++- mail_digest/i18n/es_AR.po | 37 +++++- mail_digest/i18n/es_CL.po | 37 +++++- mail_digest/i18n/es_CO.po | 37 +++++- mail_digest/i18n/es_CR.po | 37 +++++- mail_digest/i18n/es_DO.po | 37 +++++- mail_digest/i18n/es_EC.po | 37 +++++- mail_digest/i18n/es_ES.po | 37 +++++- mail_digest/i18n/es_MX.po | 37 +++++- mail_digest/i18n/es_PE.po | 37 +++++- mail_digest/i18n/es_PY.po | 37 +++++- mail_digest/i18n/es_VE.po | 37 +++++- mail_digest/i18n/et.po | 37 +++++- mail_digest/i18n/eu.po | 37 +++++- mail_digest/i18n/fa.po | 37 +++++- mail_digest/i18n/fi.po | 37 +++++- mail_digest/i18n/fr.po | 31 ++++- mail_digest/i18n/fr_CA.po | 37 +++++- mail_digest/i18n/fr_CH.po | 34 ++++- mail_digest/i18n/gl.po | 37 +++++- mail_digest/i18n/gl_ES.po | 36 ++++- mail_digest/i18n/he.po | 37 +++++- mail_digest/i18n/hr.po | 37 +++++- mail_digest/i18n/hr_HR.po | 37 +++++- mail_digest/i18n/hu.po | 37 +++++- mail_digest/i18n/id.po | 37 +++++- mail_digest/i18n/it.po | 31 ++++- mail_digest/i18n/ja.po | 37 +++++- mail_digest/i18n/ko.po | 37 +++++- mail_digest/i18n/lt.po | 37 +++++- mail_digest/i18n/lt_LT.po | 37 +++++- mail_digest/i18n/lv.po | 37 +++++- mail_digest/i18n/mail_digest.pot | 220 +++++++++++++++++++++++++++++++ mail_digest/i18n/mk.po | 37 +++++- mail_digest/i18n/mn.po | 37 +++++- mail_digest/i18n/nb.po | 37 +++++- mail_digest/i18n/nb_NO.po | 37 +++++- mail_digest/i18n/nl.po | 37 +++++- mail_digest/i18n/nl_BE.po | 37 +++++- mail_digest/i18n/nl_NL.po | 33 ++++- mail_digest/i18n/pl.po | 37 +++++- mail_digest/i18n/pt.po | 37 +++++- mail_digest/i18n/pt_BR.po | 37 +++++- mail_digest/i18n/pt_PT.po | 37 +++++- mail_digest/i18n/ro.po | 37 +++++- mail_digest/i18n/ru.po | 37 +++++- mail_digest/i18n/sk.po | 37 +++++- mail_digest/i18n/sl.po | 38 +++++- mail_digest/i18n/sr.po | 37 +++++- mail_digest/i18n/sr@latin.po | 37 +++++- mail_digest/i18n/sv.po | 37 +++++- mail_digest/i18n/th.po | 37 +++++- mail_digest/i18n/tr.po | 37 +++++- mail_digest/i18n/tr_TR.po | 37 +++++- mail_digest/i18n/uk.po | 37 +++++- mail_digest/i18n/vi.po | 30 ++++- mail_digest/i18n/vi_VN.po | 37 +++++- mail_digest/i18n/zh_CN.po | 37 +++++- mail_digest/i18n/zh_TW.po | 37 +++++- 70 files changed, 2442 insertions(+), 292 deletions(-) create mode 100644 mail_digest/i18n/mail_digest.pot diff --git a/mail_digest/i18n/am.po b/mail_digest/i18n/am.po index b61e3251..a537ed2c 100644 --- a/mail_digest/i18n/am.po +++ b/mail_digest/i18n/am.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ar.po b/mail_digest/i18n/ar.po index 2c053e30..dbc739d4 100644 --- a/mail_digest/i18n/ar.po +++ b/mail_digest/i18n/ar.po @@ -19,6 +19,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "أنشئ في" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "الحالة" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/bg.po b/mail_digest/i18n/bg.po index 7a504543..c5281dd6 100644 --- a/mail_digest/i18n/bg.po +++ b/mail_digest/i18n/bg.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Създадено на" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/bs.po b/mail_digest/i18n/bs.po index 2a22e2c2..526fa150 100644 --- a/mail_digest/i18n/bs.po +++ b/mail_digest/i18n/bs.po @@ -19,6 +19,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Kreirano" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ca.po b/mail_digest/i18n/ca.po index 7373071c..ccc192cf 100644 --- a/mail_digest/i18n/ca.po +++ b/mail_digest/i18n/ca.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creat el" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estat" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ca_ES.po b/mail_digest/i18n/ca_ES.po index 067b518f..7ee826bb 100644 --- a/mail_digest/i18n/ca_ES.po +++ b/mail_digest/i18n/ca_ES.po @@ -19,6 +19,24 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +msgid "Create email now" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estat" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/cs.po b/mail_digest/i18n/cs.po index e4e13802..54029ab3 100644 --- a/mail_digest/i18n/cs.po +++ b/mail_digest/i18n/cs.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Vytvořeno" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/da.po b/mail_digest/i18n/da.po index 53acfa48..bacd8f95 100644 --- a/mail_digest/i18n/da.po +++ b/mail_digest/i18n/da.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Oprettet den" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/de.po b/mail_digest/i18n/de.po index 0fc7a653..ad3a73c4 100644 --- a/mail_digest/i18n/de.po +++ b/mail_digest/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,12 +12,25 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -41,7 +54,7 @@ msgid "Daily" msgstr "Täglich" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "täglich Übersicht" @@ -80,7 +93,8 @@ msgstr "Häufigkeit" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Guten Tag" #. module: mail_digest @@ -176,6 +190,11 @@ msgstr "Partner notification configuration" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -192,7 +211,7 @@ msgid "Weekly" msgstr "Wöchentlich" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "wöchentlich Übersicht" @@ -203,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "You can have only one configuration per subtype!" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/el_GR.po b/mail_digest/i18n/el_GR.po index 0612cf59..65625739 100644 --- a/mail_digest/i18n/el_GR.po +++ b/mail_digest/i18n/el_GR.po @@ -20,6 +20,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Δημιουργήθηκε στις" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "Συχνότητα" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Κατάσταση" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/en_GB.po b/mail_digest/i18n/en_GB.po index 602b9fe6..dc848f56 100644 --- a/mail_digest/i18n/en_GB.po +++ b/mail_digest/i18n/en_GB.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Created on" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es.po b/mail_digest/i18n/es.po index 9cf79126..dff40913 100644 --- a/mail_digest/i18n/es.po +++ b/mail_digest/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 # enjolras , 2018 @@ -13,12 +13,25 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -42,7 +55,7 @@ msgid "Daily" msgstr "Diario" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "Actualización diaria" @@ -81,7 +94,8 @@ msgstr "Frecuencia" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Hola," #. module: mail_digest @@ -177,6 +191,11 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -193,7 +212,7 @@ msgid "Weekly" msgstr "Semanal" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "Actualización semanal" @@ -204,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_AR.po b/mail_digest/i18n/es_AR.po index c67f9487..8c526c05 100644 --- a/mail_digest/i18n/es_AR.po +++ b/mail_digest/i18n/es_AR.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_CL.po b/mail_digest/i18n/es_CL.po index 7ec03e75..d0caa595 100644 --- a/mail_digest/i18n/es_CL.po +++ b/mail_digest/i18n/es_CL.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_CO.po b/mail_digest/i18n/es_CO.po index a278b029..04d556c0 100644 --- a/mail_digest/i18n/es_CO.po +++ b/mail_digest/i18n/es_CO.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_CR.po b/mail_digest/i18n/es_CR.po index d30768a9..c08cafed 100644 --- a/mail_digest/i18n/es_CR.po +++ b/mail_digest/i18n/es_CR.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_DO.po b/mail_digest/i18n/es_DO.po index d56ae077..941d342c 100644 --- a/mail_digest/i18n/es_DO.po +++ b/mail_digest/i18n/es_DO.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_EC.po b/mail_digest/i18n/es_EC.po index 1ec9b3de..e1370166 100644 --- a/mail_digest/i18n/es_EC.po +++ b/mail_digest/i18n/es_EC.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_ES.po b/mail_digest/i18n/es_ES.po index 619d683a..39de8efb 100644 --- a/mail_digest/i18n/es_ES.po +++ b/mail_digest/i18n/es_ES.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_MX.po b/mail_digest/i18n/es_MX.po index e5c5a2bf..d25ae5b1 100644 --- a/mail_digest/i18n/es_MX.po +++ b/mail_digest/i18n/es_MX.po @@ -20,6 +20,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "Frecuencia" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_PE.po b/mail_digest/i18n/es_PE.po index d47eb720..c0e82124 100644 --- a/mail_digest/i18n/es_PE.po +++ b/mail_digest/i18n/es_PE.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_PY.po b/mail_digest/i18n/es_PY.po index 82b42ee3..64775430 100644 --- a/mail_digest/i18n/es_PY.po +++ b/mail_digest/i18n/es_PY.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/es_VE.po b/mail_digest/i18n/es_VE.po index 2d34d898..7081c775 100644 --- a/mail_digest/i18n/es_VE.po +++ b/mail_digest/i18n/es_VE.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/et.po b/mail_digest/i18n/et.po index e22f97f7..f3c90999 100644 --- a/mail_digest/i18n/et.po +++ b/mail_digest/i18n/et.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Loodud" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Olek" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/eu.po b/mail_digest/i18n/eu.po index b5f60d07..5a809058 100644 --- a/mail_digest/i18n/eu.po +++ b/mail_digest/i18n/eu.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Created on" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/fa.po b/mail_digest/i18n/fa.po index ae83fcc6..23ee413a 100644 --- a/mail_digest/i18n/fa.po +++ b/mail_digest/i18n/fa.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "ایجاد شده در" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/fi.po b/mail_digest/i18n/fi.po index 5e8f6e20..7bfdfb73 100644 --- a/mail_digest/i18n/fi.po +++ b/mail_digest/i18n/fi.po @@ -20,6 +20,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Luotu" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "Päivitystiheys" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Tila" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/fr.po b/mail_digest/i18n/fr.po index accf0a8f..3f833fb0 100644 --- a/mail_digest/i18n/fr.po +++ b/mail_digest/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 # Quentin THEURET , 2018 @@ -13,12 +13,25 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -42,7 +55,7 @@ msgid "Daily" msgstr "Quotidien" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "Mise à jour quotidienne" @@ -81,7 +94,8 @@ msgstr "Fréquence" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Bonjour," #. module: mail_digest @@ -177,6 +191,11 @@ msgstr "Configuration de la notification du partenaire" msgid "Qweb mail template" msgstr "Modèle de mail" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -193,7 +212,7 @@ msgid "Weekly" msgstr "Hebdomadaire" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "Mise à jour hebdomadaire" @@ -204,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "Il n'est pas possible d'avoir plus d'une configuration par sous type" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/fr_CA.po b/mail_digest/i18n/fr_CA.po index 0e375099..cf8d7c70 100644 --- a/mail_digest/i18n/fr_CA.po +++ b/mail_digest/i18n/fr_CA.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Créé le" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/fr_CH.po b/mail_digest/i18n/fr_CH.po index 3f312182..d9eb8a42 100644 --- a/mail_digest/i18n/fr_CH.po +++ b/mail_digest/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,13 +11,27 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -41,7 +55,7 @@ msgid "Daily" msgstr "Quotidien" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "Mise à jour quotidienne" @@ -80,7 +94,8 @@ msgstr "Fréquence" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Bonjour," #. module: mail_digest @@ -176,6 +191,11 @@ msgstr "Configuration de la notification du partenaire" msgid "Qweb mail template" msgstr "Modèle de mail" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -192,7 +212,7 @@ msgid "Weekly" msgstr "Hebdomadaire" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "Mise à jour hebdomadaire" @@ -203,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "Il n'est pas possible d'avoir plus d'une configuration par sous type" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/gl.po b/mail_digest/i18n/gl.po index 1a945eaf..7b49688c 100644 --- a/mail_digest/i18n/gl.po +++ b/mail_digest/i18n/gl.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creado en" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/gl_ES.po b/mail_digest/i18n/gl_ES.po index fa5aca8e..3a354fb3 100644 --- a/mail_digest/i18n/gl_ES.po +++ b/mail_digest/i18n/gl_ES.po @@ -19,6 +19,24 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +msgid "Create email now" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/he.po b/mail_digest/i18n/he.po index c5e352ec..337e611b 100644 --- a/mail_digest/i18n/he.po +++ b/mail_digest/i18n/he.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "נוצר ב-" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/hr.po b/mail_digest/i18n/hr.po index c35af9d8..0ce71a86 100644 --- a/mail_digest/i18n/hr.po +++ b/mail_digest/i18n/hr.po @@ -21,6 +21,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Stvoreno dana" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -39,7 +58,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -78,7 +97,7 @@ msgstr "Učestalost" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -174,18 +193,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -196,7 +225,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/hr_HR.po b/mail_digest/i18n/hr_HR.po index 394d2feb..de628a34 100644 --- a/mail_digest/i18n/hr_HR.po +++ b/mail_digest/i18n/hr_HR.po @@ -21,6 +21,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Kreirano" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -39,7 +58,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -78,7 +97,7 @@ msgstr "Učestalost" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -174,18 +193,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -196,7 +225,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/hu.po b/mail_digest/i18n/hu.po index 308b0c51..ba5290b9 100644 --- a/mail_digest/i18n/hu.po +++ b/mail_digest/i18n/hu.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Létrehozás dátuma" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Állapot" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/id.po b/mail_digest/i18n/id.po index 6eab89ef..1a8f8130 100644 --- a/mail_digest/i18n/id.po +++ b/mail_digest/i18n/id.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Dibuat pada" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/it.po b/mail_digest/i18n/it.po index da02145d..84e3f36c 100644 --- a/mail_digest/i18n/it.po +++ b/mail_digest/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,12 +12,25 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -41,7 +54,7 @@ msgid "Daily" msgstr "Giornaliera" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "Aggiornamento giornaliero" @@ -80,7 +93,8 @@ msgstr "Frequenza" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Ciao," #. module: mail_digest @@ -176,6 +190,11 @@ msgstr "Configurazione notifiche partner" msgid "Qweb mail template" msgstr "Qweb mail template" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -192,7 +211,7 @@ msgid "Weekly" msgstr "Settimanale" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "Aggiornamento settimanale" @@ -203,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "Puoi avere solo una configurazione per tipo!" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "É necessario passare un template or impostarne uno sul digest." diff --git a/mail_digest/i18n/ja.po b/mail_digest/i18n/ja.po index 6feef618..d3eda343 100644 --- a/mail_digest/i18n/ja.po +++ b/mail_digest/i18n/ja.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "作成日" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ko.po b/mail_digest/i18n/ko.po index dbb40dd1..73ae9a38 100644 --- a/mail_digest/i18n/ko.po +++ b/mail_digest/i18n/ko.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "작성일" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/lt.po b/mail_digest/i18n/lt.po index 093c5ea2..ae0bf18a 100644 --- a/mail_digest/i18n/lt.po +++ b/mail_digest/i18n/lt.po @@ -19,6 +19,25 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Sukurta" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Būsena" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/lt_LT.po b/mail_digest/i18n/lt_LT.po index 63d753f5..22bebaed 100644 --- a/mail_digest/i18n/lt_LT.po +++ b/mail_digest/i18n/lt_LT.po @@ -20,6 +20,25 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Sukurta" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/lv.po b/mail_digest/i18n/lv.po index 47c7e59f..84e16b7a 100644 --- a/mail_digest/i18n/lv.po +++ b/mail_digest/i18n/lv.po @@ -19,6 +19,25 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Izveidots" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Statuss" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/mail_digest.pot b/mail_digest/i18n/mail_digest.pot new file mode 100644 index 00000000..8b802ade --- /dev/null +++ b/mail_digest/i18n/mail_digest.pot @@ -0,0 +1,220 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_digest +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Collected messages can have different styles applied on each element. If this flag is enabled (default) each message content will be sanitized before generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +msgid "Create email now" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid +msgid "Created by" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_date +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_date +msgid "Created on" +msgstr "" + +#. module: mail_digest +#: selection:res.partner,notify_frequency:0 +msgid "Daily" +msgstr "" + +#. module: mail_digest +#: code:addons/mail_digest/models/mail_digest.py:183 +#, python-format +msgid "Daily update" +msgstr "" + +#. module: mail_digest +#: code:addons/mail_digest/models/res_partner.py:11 +#: model:ir.actions.act_window,name:mail_digest.action_digest_all +#: model:ir.ui.menu,name:mail_digest.menu_email_digest +#, python-format +msgid "Digest" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_display_name +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_display_name +msgid "Display Name" +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.view_users_form_mail +#: model:ir.ui.view,arch_db:mail_digest.view_users_form_simple_modif_mail +msgid "Enable/disable notifications by type" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_enabled +msgid "Enabled" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_frequency +#: model:ir.model.fields,field_description:mail_digest.field_res_partner_notify_frequency +#: model:ir.model.fields,field_description:mail_digest.field_res_users_notify_frequency +msgid "Frequency" +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Hello" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_id +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_id +msgid "ID" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest___last_update +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_write_uid +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_write_date +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_mail_id +msgid "Mail" +msgstr "" + +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_tree +msgid "Mail digest" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_message_ids +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +msgid "Messages" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_name +msgid "Name" +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.notification_form +msgid "Notification" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_subtype_id +msgid "Notification type" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_res_partner_notify_conf_ids +#: model:ir.model.fields,field_description:mail_digest.field_res_users_notify_conf_ids +#: model:ir.ui.view,arch_db:mail_digest.notification_tree +msgid "Notifications" +msgstr "" + +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_partner +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_partner_id +#: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_partner_id +msgid "Partner" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_res_partner_disabled_notify_subtype_ids +#: model:ir.model.fields,field_description:mail_digest.field_res_users_disabled_notify_subtype_ids +msgid "Partner disabled subtypes" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_res_partner_enabled_notify_subtype_ids +#: model:ir.model.fields,field_description:mail_digest.field_res_users_enabled_notify_subtype_ids +msgid "Partner enabled subtypes" +msgstr "" + +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_partner_notification_conf +msgid "Partner notification configuration" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_digest_template_id +msgid "Qweb mail template" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state +msgid "Status" +msgstr "" + +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + +#. module: mail_digest +#: selection:res.partner,notify_frequency:0 +msgid "Weekly" +msgstr "" + +#. module: mail_digest +#: code:addons/mail_digest/models/mail_digest.py:185 +#, python-format +msgid "Weekly update" +msgstr "" + +#. module: mail_digest +#: sql_constraint:partner.notification.conf:0 +msgid "You can have only one configuration per subtype!" +msgstr "" + +#. module: mail_digest +#: code:addons/mail_digest/models/mail_digest.py:208 +#, python-format +msgid "You must pass a template or set one on the digest record." +msgstr "" + diff --git a/mail_digest/i18n/mk.po b/mail_digest/i18n/mk.po index 1cde0466..4942581f 100644 --- a/mail_digest/i18n/mk.po +++ b/mail_digest/i18n/mk.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Креирано на" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Статус" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/mn.po b/mail_digest/i18n/mn.po index d4c94158..7ad2e010 100644 --- a/mail_digest/i18n/mn.po +++ b/mail_digest/i18n/mn.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Үүсгэсэн" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Төлөв" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/nb.po b/mail_digest/i18n/nb.po index bad501e1..584e5208 100644 --- a/mail_digest/i18n/nb.po +++ b/mail_digest/i18n/nb.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Opprettet den" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/nb_NO.po b/mail_digest/i18n/nb_NO.po index 05589b5b..217aba29 100644 --- a/mail_digest/i18n/nb_NO.po +++ b/mail_digest/i18n/nb_NO.po @@ -20,6 +20,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Laget den" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/nl.po b/mail_digest/i18n/nl.po index 72dabb32..a77150c5 100644 --- a/mail_digest/i18n/nl.po +++ b/mail_digest/i18n/nl.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Aangemaakt op" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "Dagelijks" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "Wekelijks" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/nl_BE.po b/mail_digest/i18n/nl_BE.po index faee7f58..01e7f9aa 100644 --- a/mail_digest/i18n/nl_BE.po +++ b/mail_digest/i18n/nl_BE.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Gemaakt op" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/nl_NL.po b/mail_digest/i18n/nl_NL.po index ba560fa7..908b4b25 100644 --- a/mail_digest/i18n/nl_NL.po +++ b/mail_digest/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # Peter Hageman , 2018 # OCA Transbot , 2018 @@ -12,13 +12,27 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -42,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -81,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -177,6 +191,11 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -193,7 +212,7 @@ msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -204,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/pl.po b/mail_digest/i18n/pl.po index da23e503..a20ee479 100644 --- a/mail_digest/i18n/pl.po +++ b/mail_digest/i18n/pl.po @@ -20,6 +20,25 @@ msgstr "" "%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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Utworzono" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/pt.po b/mail_digest/i18n/pt.po index 9f79315c..35caaa6e 100644 --- a/mail_digest/i18n/pt.po +++ b/mail_digest/i18n/pt.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Criado em" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/pt_BR.po b/mail_digest/i18n/pt_BR.po index 4d73219a..b27b2a8f 100644 --- a/mail_digest/i18n/pt_BR.po +++ b/mail_digest/i18n/pt_BR.po @@ -20,6 +20,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Criado em" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/pt_PT.po b/mail_digest/i18n/pt_PT.po index 88abedaa..61ade1f8 100644 --- a/mail_digest/i18n/pt_PT.po +++ b/mail_digest/i18n/pt_PT.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Criado em" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Estado" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ro.po b/mail_digest/i18n/ro.po index 22eb7c8e..7770aa7a 100644 --- a/mail_digest/i18n/ro.po +++ b/mail_digest/i18n/ro.po @@ -19,6 +19,25 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Creat la" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Stare" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/ru.po b/mail_digest/i18n/ru.po index 7872d3a9..3e6950d5 100644 --- a/mail_digest/i18n/ru.po +++ b/mail_digest/i18n/ru.po @@ -20,6 +20,25 @@ msgstr "" "%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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Создан" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Статус" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/sk.po b/mail_digest/i18n/sk.po index 3a95a154..f31cc6de 100644 --- a/mail_digest/i18n/sk.po +++ b/mail_digest/i18n/sk.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Vytvorené" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "Frekvencia" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/sl.po b/mail_digest/i18n/sl.po index fa954a6f..fb0997d1 100644 --- a/mail_digest/i18n/sl.po +++ b/mail_digest/i18n/sl.po @@ -20,6 +20,25 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Ustvarjeno" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "Dnevno" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,8 @@ msgstr "Frekvenca" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +#, fuzzy +msgid "Hello" msgstr "Pozdravljeni." #. module: mail_digest @@ -173,18 +193,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Status" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "Tedenski" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +225,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/sr.po b/mail_digest/i18n/sr.po index 8bc6c306..13e6e2c5 100644 --- a/mail_digest/i18n/sr.po +++ b/mail_digest/i18n/sr.po @@ -19,6 +19,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Kreiran" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/sr@latin.po b/mail_digest/i18n/sr@latin.po index 579c9038..3d027c92 100644 --- a/mail_digest/i18n/sr@latin.po +++ b/mail_digest/i18n/sr@latin.po @@ -20,6 +20,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Kreiran" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -38,7 +57,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -77,7 +96,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -173,18 +192,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -195,7 +224,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/sv.po b/mail_digest/i18n/sv.po index cb1620b4..0763c669 100644 --- a/mail_digest/i18n/sv.po +++ b/mail_digest/i18n/sv.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Skapad den" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/th.po b/mail_digest/i18n/th.po index 01706cb5..37ad9cc4 100644 --- a/mail_digest/i18n/th.po +++ b/mail_digest/i18n/th.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "สร้างเมื่อ" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "สถานะ" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/tr.po b/mail_digest/i18n/tr.po index a7fa8f9f..3fdd86db 100644 --- a/mail_digest/i18n/tr.po +++ b/mail_digest/i18n/tr.po @@ -18,6 +18,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Oluşturuldu" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -36,7 +55,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -75,7 +94,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -171,18 +190,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Durum" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -193,7 +222,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/tr_TR.po b/mail_digest/i18n/tr_TR.po index 1804f27c..f3d47cdb 100644 --- a/mail_digest/i18n/tr_TR.po +++ b/mail_digest/i18n/tr_TR.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Oluşturulma tarihi" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "Durum" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/uk.po b/mail_digest/i18n/uk.po index 6739edf4..688510ba 100644 --- a/mail_digest/i18n/uk.po +++ b/mail_digest/i18n/uk.po @@ -19,6 +19,25 @@ msgstr "" "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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Дата створення" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/vi.po b/mail_digest/i18n/vi.po index 933465d6..7353f79b 100644 --- a/mail_digest/i18n/vi.po +++ b/mail_digest/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_digest -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,12 +12,25 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.mail_digest_form msgid "Create email now" @@ -41,7 +54,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:163 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -80,7 +93,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -176,6 +189,11 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" @@ -192,7 +210,7 @@ msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:165 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -203,7 +221,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:188 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/vi_VN.po b/mail_digest/i18n/vi_VN.po index b68a63f0..022f4d58 100644 --- a/mail_digest/i18n/vi_VN.po +++ b/mail_digest/i18n/vi_VN.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "Tạo vào" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/zh_CN.po b/mail_digest/i18n/zh_CN.po index 60949a94..70eee2b0 100644 --- a/mail_digest/i18n/zh_CN.po +++ b/mail_digest/i18n/zh_CN.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "创建时间" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "状态" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" diff --git a/mail_digest/i18n/zh_TW.po b/mail_digest/i18n/zh_TW.po index 3706e822..bf9652ea 100644 --- a/mail_digest/i18n/zh_TW.po +++ b/mail_digest/i18n/zh_TW.po @@ -19,6 +19,25 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl +msgid "Changed values" +msgstr "" + +#. module: mail_digest +#: model:ir.model.fields,help:mail_digest.field_mail_digest_sanitize_msg_body +msgid "" +"Collected messages can have different styles applied on each element. If " +"this flag is enabled (default) each message content will be sanitized before " +"generating the email." +msgstr "" + +#. module: mail_digest +#: model:ir.ui.view,arch_db:mail_digest.mail_digest_form +#, fuzzy +msgid "Create email now" +msgstr "建立於" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_create_uid #: model:ir.model.fields,field_description:mail_digest.field_partner_notification_conf_create_uid @@ -37,7 +56,7 @@ msgid "Daily" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:148 +#: code:addons/mail_digest/models/mail_digest.py:183 #, python-format msgid "Daily update" msgstr "" @@ -76,7 +95,7 @@ msgstr "" #. module: mail_digest #: model:ir.ui.view,arch_db:mail_digest.default_digest_tmpl -msgid "Hello," +msgid "Hello" msgstr "" #. module: mail_digest @@ -172,18 +191,28 @@ msgstr "" msgid "Qweb mail template" msgstr "" +#. module: mail_digest +#: model:ir.model.fields,field_description:mail_digest.field_mail_digest_sanitize_msg_body +msgid "Sanitize message body" +msgstr "" + #. module: mail_digest #: model:ir.model.fields,field_description:mail_digest.field_mail_digest_state msgid "Status" msgstr "" +#. module: mail_digest +#: model:ir.model,name:mail_digest.model_res_users +msgid "Users" +msgstr "" + #. module: mail_digest #: selection:res.partner,notify_frequency:0 msgid "Weekly" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:150 +#: code:addons/mail_digest/models/mail_digest.py:185 #, python-format msgid "Weekly update" msgstr "" @@ -194,7 +223,7 @@ msgid "You can have only one configuration per subtype!" msgstr "" #. module: mail_digest -#: code:addons/mail_digest/models/mail_digest.py:173 +#: code:addons/mail_digest/models/mail_digest.py:208 #, python-format msgid "You must pass a template or set one on the digest record." msgstr "" From 90c7ff242b53f9a69a613af2ed80c26df5074ccd Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:42 +0000 Subject: [PATCH 26/86] [UPD] Update mail_footer_notified_partner.pot --- mail_footer_notified_partner/i18n/am.po | 6 ++--- mail_footer_notified_partner/i18n/ar.po | 9 ++++--- mail_footer_notified_partner/i18n/bg.po | 6 ++--- mail_footer_notified_partner/i18n/bs.po | 9 ++++--- mail_footer_notified_partner/i18n/ca.po | 6 ++--- mail_footer_notified_partner/i18n/cs.po | 6 ++--- mail_footer_notified_partner/i18n/da.po | 6 ++--- mail_footer_notified_partner/i18n/de.po | 6 ++--- mail_footer_notified_partner/i18n/el_GR.po | 9 ++++--- mail_footer_notified_partner/i18n/en_GB.po | 9 ++++--- mail_footer_notified_partner/i18n/es.po | 6 ++--- mail_footer_notified_partner/i18n/es_CR.po | 9 ++++--- mail_footer_notified_partner/i18n/es_EC.po | 9 ++++--- mail_footer_notified_partner/i18n/es_MX.po | 9 ++++--- mail_footer_notified_partner/i18n/es_VE.po | 9 ++++--- mail_footer_notified_partner/i18n/et.po | 6 ++--- mail_footer_notified_partner/i18n/eu.po | 6 ++--- mail_footer_notified_partner/i18n/fi.po | 6 ++--- mail_footer_notified_partner/i18n/fr.po | 6 ++--- mail_footer_notified_partner/i18n/fr_CA.po | 9 ++++--- mail_footer_notified_partner/i18n/fr_CH.po | 9 ++++--- mail_footer_notified_partner/i18n/gl.po | 6 ++--- mail_footer_notified_partner/i18n/hr.po | 9 ++++--- mail_footer_notified_partner/i18n/hr_HR.po | 12 +++++---- mail_footer_notified_partner/i18n/hu.po | 6 ++--- mail_footer_notified_partner/i18n/it.po | 6 ++--- mail_footer_notified_partner/i18n/ja.po | 6 ++--- mail_footer_notified_partner/i18n/lt.po | 9 ++++--- mail_footer_notified_partner/i18n/lv.po | 9 ++++--- .../i18n/mail_footer_notified_partner.pot | 26 +++++++++++++++++++ mail_footer_notified_partner/i18n/mk.po | 6 ++--- mail_footer_notified_partner/i18n/mn.po | 6 ++--- mail_footer_notified_partner/i18n/nb.po | 9 ++++--- mail_footer_notified_partner/i18n/nb_NO.po | 9 ++++--- mail_footer_notified_partner/i18n/nl.po | 6 ++--- mail_footer_notified_partner/i18n/nl_BE.po | 9 ++++--- mail_footer_notified_partner/i18n/nl_NL.po | 9 ++++--- mail_footer_notified_partner/i18n/pl.po | 10 ++++--- mail_footer_notified_partner/i18n/pt.po | 6 ++--- mail_footer_notified_partner/i18n/pt_BR.po | 9 ++++--- mail_footer_notified_partner/i18n/pt_PT.po | 9 ++++--- mail_footer_notified_partner/i18n/ro.po | 9 ++++--- mail_footer_notified_partner/i18n/ru.po | 10 ++++--- mail_footer_notified_partner/i18n/sk.po | 6 ++--- mail_footer_notified_partner/i18n/sl.po | 9 ++++--- mail_footer_notified_partner/i18n/sr@latin.po | 12 +++++---- mail_footer_notified_partner/i18n/sv.po | 6 ++--- mail_footer_notified_partner/i18n/th.po | 6 ++--- mail_footer_notified_partner/i18n/tr.po | 6 ++--- mail_footer_notified_partner/i18n/tr_TR.po | 9 ++++--- mail_footer_notified_partner/i18n/vi.po | 6 ++--- mail_footer_notified_partner/i18n/zh_CN.po | 9 ++++--- mail_footer_notified_partner/i18n/zh_TW.po | 9 ++++--- 53 files changed, 244 insertions(+), 186 deletions(-) create mode 100644 mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot diff --git a/mail_footer_notified_partner/i18n/am.po b/mail_footer_notified_partner/i18n/am.po index eb8b982e..b423e5dd 100644 --- a/mail_footer_notified_partner/i18n/am.po +++ b/mail_footer_notified_partner/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/ar.po b/mail_footer_notified_partner/i18n/ar.po index f652156a..4e46a809 100644 --- a/mail_footer_notified_partner/i18n/ar.po +++ b/mail_footer_notified_partner/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/bg.po b/mail_footer_notified_partner/i18n/bg.po index 0fe253f8..e8202ca7 100644 --- a/mail_footer_notified_partner/i18n/bg.po +++ b/mail_footer_notified_partner/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/bs.po b/mail_footer_notified_partner/i18n/bs.po index 8e42a37a..141aad19 100644 --- a/mail_footer_notified_partner/i18n/bs.po +++ b/mail_footer_notified_partner/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/ca.po b/mail_footer_notified_partner/i18n/ca.po index 547883bc..d64d474b 100644 --- a/mail_footer_notified_partner/i18n/ca.po +++ b/mail_footer_notified_partner/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/cs.po b/mail_footer_notified_partner/i18n/cs.po index 548e019a..08fdf2eb 100644 --- a/mail_footer_notified_partner/i18n/cs.po +++ b/mail_footer_notified_partner/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/da.po b/mail_footer_notified_partner/i18n/da.po index bb7c186e..9096e8de 100644 --- a/mail_footer_notified_partner/i18n/da.po +++ b/mail_footer_notified_partner/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/de.po b/mail_footer_notified_partner/i18n/de.po index b16a31d7..cd1b69d9 100644 --- a/mail_footer_notified_partner/i18n/de.po +++ b/mail_footer_notified_partner/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/el_GR.po b/mail_footer_notified_partner/i18n/el_GR.po index 5f3ddd7a..e1ea97da 100644 --- a/mail_footer_notified_partner/i18n/el_GR.po +++ b/mail_footer_notified_partner/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/en_GB.po b/mail_footer_notified_partner/i18n/en_GB.po index f1867b01..c28453d6 100644 --- a/mail_footer_notified_partner/i18n/en_GB.po +++ b/mail_footer_notified_partner/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/es.po b/mail_footer_notified_partner/i18n/es.po index 117b5bee..d8540e2b 100644 --- a/mail_footer_notified_partner/i18n/es.po +++ b/mail_footer_notified_partner/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/es_CR.po b/mail_footer_notified_partner/i18n/es_CR.po index 1a7d8589..0e1e0aea 100644 --- a/mail_footer_notified_partner/i18n/es_CR.po +++ b/mail_footer_notified_partner/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/es_EC.po b/mail_footer_notified_partner/i18n/es_EC.po index b604249d..0e8fce52 100644 --- a/mail_footer_notified_partner/i18n/es_EC.po +++ b/mail_footer_notified_partner/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/es_MX.po b/mail_footer_notified_partner/i18n/es_MX.po index 355a1cdd..41d5196b 100644 --- a/mail_footer_notified_partner/i18n/es_MX.po +++ b/mail_footer_notified_partner/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/es_VE.po b/mail_footer_notified_partner/i18n/es_VE.po index 486274aa..94708a3a 100644 --- a/mail_footer_notified_partner/i18n/es_VE.po +++ b/mail_footer_notified_partner/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/et.po b/mail_footer_notified_partner/i18n/et.po index bbcd12c0..5e3467e7 100644 --- a/mail_footer_notified_partner/i18n/et.po +++ b/mail_footer_notified_partner/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/eu.po b/mail_footer_notified_partner/i18n/eu.po index 01317f86..f586452f 100644 --- a/mail_footer_notified_partner/i18n/eu.po +++ b/mail_footer_notified_partner/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/fi.po b/mail_footer_notified_partner/i18n/fi.po index 27bd31cd..32664bbc 100644 --- a/mail_footer_notified_partner/i18n/fi.po +++ b/mail_footer_notified_partner/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/fr.po b/mail_footer_notified_partner/i18n/fr.po index 9e3ce420..97189306 100644 --- a/mail_footer_notified_partner/i18n/fr.po +++ b/mail_footer_notified_partner/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/fr_CA.po b/mail_footer_notified_partner/i18n/fr_CA.po index e38b12a7..c4e8304a 100644 --- a/mail_footer_notified_partner/i18n/fr_CA.po +++ b/mail_footer_notified_partner/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/fr_CH.po b/mail_footer_notified_partner/i18n/fr_CH.po index ffa75b01..5a9a9818 100644 --- a/mail_footer_notified_partner/i18n/fr_CH.po +++ b/mail_footer_notified_partner/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/gl.po b/mail_footer_notified_partner/i18n/gl.po index d0ff14ee..355e8c02 100644 --- a/mail_footer_notified_partner/i18n/gl.po +++ b/mail_footer_notified_partner/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/hr.po b/mail_footer_notified_partner/i18n/hr.po index 54db12dc..96bfc4c9 100644 --- a/mail_footer_notified_partner/i18n/hr.po +++ b/mail_footer_notified_partner/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/hr_HR.po b/mail_footer_notified_partner/i18n/hr_HR.po index 6ccaf718..91ab5fc2 100644 --- a/mail_footer_notified_partner/i18n/hr_HR.po +++ b/mail_footer_notified_partner/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/hu.po b/mail_footer_notified_partner/i18n/hu.po index fb740c31..bf799ce4 100644 --- a/mail_footer_notified_partner/i18n/hu.po +++ b/mail_footer_notified_partner/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/it.po b/mail_footer_notified_partner/i18n/it.po index 483a8043..c73fb982 100644 --- a/mail_footer_notified_partner/i18n/it.po +++ b/mail_footer_notified_partner/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/ja.po b/mail_footer_notified_partner/i18n/ja.po index d9c02344..8d86b41f 100644 --- a/mail_footer_notified_partner/i18n/ja.po +++ b/mail_footer_notified_partner/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/lt.po b/mail_footer_notified_partner/i18n/lt.po index 505e6b00..c0e298dc 100644 --- a/mail_footer_notified_partner/i18n/lt.po +++ b/mail_footer_notified_partner/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/lv.po b/mail_footer_notified_partner/i18n/lv.po index 17af6e8d..b52e777a 100644 --- a/mail_footer_notified_partner/i18n/lv.po +++ b/mail_footer_notified_partner/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot b/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot new file mode 100644 index 00000000..8a4fe3fa --- /dev/null +++ b/mail_footer_notified_partner/i18n/mail_footer_notified_partner.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_footer_notified_partner +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_footer_notified_partner +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 +#, python-format +msgid "Also notified: " +msgstr "" + +#. module: mail_footer_notified_partner +#: model:ir.model,name:mail_footer_notified_partner.model_res_partner +msgid "Partner" +msgstr "" + diff --git a/mail_footer_notified_partner/i18n/mk.po b/mail_footer_notified_partner/i18n/mk.po index aaf4421c..52f71f09 100644 --- a/mail_footer_notified_partner/i18n/mk.po +++ b/mail_footer_notified_partner/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/mn.po b/mail_footer_notified_partner/i18n/mn.po index e7d99555..cd50b9a9 100644 --- a/mail_footer_notified_partner/i18n/mn.po +++ b/mail_footer_notified_partner/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/nb.po b/mail_footer_notified_partner/i18n/nb.po index 1ddc0158..546c59b7 100644 --- a/mail_footer_notified_partner/i18n/nb.po +++ b/mail_footer_notified_partner/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/nb_NO.po b/mail_footer_notified_partner/i18n/nb_NO.po index 63167cd5..cc23a55e 100644 --- a/mail_footer_notified_partner/i18n/nb_NO.po +++ b/mail_footer_notified_partner/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/nl.po b/mail_footer_notified_partner/i18n/nl.po index 7c52938f..3e246924 100644 --- a/mail_footer_notified_partner/i18n/nl.po +++ b/mail_footer_notified_partner/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/nl_BE.po b/mail_footer_notified_partner/i18n/nl_BE.po index c618cedd..5f827aa4 100644 --- a/mail_footer_notified_partner/i18n/nl_BE.po +++ b/mail_footer_notified_partner/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/nl_NL.po b/mail_footer_notified_partner/i18n/nl_NL.po index ba8ec3b1..c1ef91a5 100644 --- a/mail_footer_notified_partner/i18n/nl_NL.po +++ b/mail_footer_notified_partner/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/pl.po b/mail_footer_notified_partner/i18n/pl.po index 415e6c31..7abae1ee 100644 --- a/mail_footer_notified_partner/i18n/pl.po +++ b/mail_footer_notified_partner/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,16 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/pt.po b/mail_footer_notified_partner/i18n/pt.po index 2669be00..43386ccd 100644 --- a/mail_footer_notified_partner/i18n/pt.po +++ b/mail_footer_notified_partner/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/pt_BR.po b/mail_footer_notified_partner/i18n/pt_BR.po index 7d4589ff..9e497ba7 100644 --- a/mail_footer_notified_partner/i18n/pt_BR.po +++ b/mail_footer_notified_partner/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/pt_PT.po b/mail_footer_notified_partner/i18n/pt_PT.po index c067563c..80c3b88b 100644 --- a/mail_footer_notified_partner/i18n/pt_PT.po +++ b/mail_footer_notified_partner/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/ro.po b/mail_footer_notified_partner/i18n/ro.po index cbaa9765..c09a9f74 100644 --- a/mail_footer_notified_partner/i18n/ro.po +++ b/mail_footer_notified_partner/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/ru.po b/mail_footer_notified_partner/i18n/ru.po index d555771f..566685b0 100644 --- a/mail_footer_notified_partner/i18n/ru.po +++ b/mail_footer_notified_partner/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,16 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/sk.po b/mail_footer_notified_partner/i18n/sk.po index 46ddc7bc..a0e6b49a 100644 --- a/mail_footer_notified_partner/i18n/sk.po +++ b/mail_footer_notified_partner/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/sl.po b/mail_footer_notified_partner/i18n/sl.po index b9ec843e..fad7e0cb 100644 --- a/mail_footer_notified_partner/i18n/sl.po +++ b/mail_footer_notified_partner/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/sr@latin.po b/mail_footer_notified_partner/i18n/sr@latin.po index 2e8a230c..d3fd1f40 100644 --- a/mail_footer_notified_partner/i18n/sr@latin.po +++ b/mail_footer_notified_partner/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/sv.po b/mail_footer_notified_partner/i18n/sv.po index a7e4ebd2..344c8aad 100644 --- a/mail_footer_notified_partner/i18n/sv.po +++ b/mail_footer_notified_partner/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/th.po b/mail_footer_notified_partner/i18n/th.po index a26b641d..221e5389 100644 --- a/mail_footer_notified_partner/i18n/th.po +++ b/mail_footer_notified_partner/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/tr.po b/mail_footer_notified_partner/i18n/tr.po index acab5241..bd3ada13 100644 --- a/mail_footer_notified_partner/i18n/tr.po +++ b/mail_footer_notified_partner/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/tr_TR.po b/mail_footer_notified_partner/i18n/tr_TR.po index 926cefda..82b5034c 100644 --- a/mail_footer_notified_partner/i18n/tr_TR.po +++ b/mail_footer_notified_partner/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/vi.po b/mail_footer_notified_partner/i18n/vi.po index e6cbc5d1..b3f669e4 100644 --- a/mail_footer_notified_partner/i18n/vi.po +++ b/mail_footer_notified_partner/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/zh_CN.po b/mail_footer_notified_partner/i18n/zh_CN.po index 9ef6c430..ef6e31e8 100644 --- a/mail_footer_notified_partner/i18n/zh_CN.po +++ b/mail_footer_notified_partner/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" diff --git a/mail_footer_notified_partner/i18n/zh_TW.po b/mail_footer_notified_partner/i18n/zh_TW.po index d58a7e1d..a1f91779 100644 --- a/mail_footer_notified_partner/i18n/zh_TW.po +++ b/mail_footer_notified_partner/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_footer_notified_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mail_footer_notified_partner -#: code:addons/mail_footer_notified_partner/models/mail_followers.py:24 +#: code:addons/mail_footer_notified_partner/models/mail_followers.py:43 #, python-format msgid "Also notified: " msgstr "" From e376553720f9db1aa8d6db03d02c8066bc109a73 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:43 +0000 Subject: [PATCH 27/86] [UPD] Update mail_force_queue.pot --- mail_force_queue/i18n/ca.po | 4 +-- mail_force_queue/i18n/de.po | 4 +-- mail_force_queue/i18n/es.po | 4 +-- mail_force_queue/i18n/es_CO.po | 7 ++-- mail_force_queue/i18n/fr.po | 4 +-- mail_force_queue/i18n/hr.po | 7 ++-- mail_force_queue/i18n/it.po | 4 +-- mail_force_queue/i18n/mail_force_queue.pot | 41 ++++++++++++++++++++++ mail_force_queue/i18n/nb.po | 7 ++-- mail_force_queue/i18n/nl.po | 4 +-- mail_force_queue/i18n/nl_NL.po | 7 ++-- mail_force_queue/i18n/pt.po | 4 +-- mail_force_queue/i18n/pt_BR.po | 7 ++-- mail_force_queue/i18n/sl.po | 7 ++-- mail_force_queue/i18n/tr.po | 4 +-- mail_force_queue/i18n/tr_TR.po | 7 ++-- 16 files changed, 85 insertions(+), 37 deletions(-) create mode 100644 mail_force_queue/i18n/mail_force_queue.pot diff --git a/mail_force_queue/i18n/ca.po b/mail_force_queue/i18n/ca.po index 65c0315d..4d163094 100644 --- a/mail_force_queue/i18n/ca.po +++ b/mail_force_queue/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/de.po b/mail_force_queue/i18n/de.po index 01272572..3d80312c 100644 --- a/mail_force_queue/i18n/de.po +++ b/mail_force_queue/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/es.po b/mail_force_queue/i18n/es.po index 9e79f09d..9e2707a4 100644 --- a/mail_force_queue/i18n/es.po +++ b/mail_force_queue/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 # enjolras , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/es_CO.po b/mail_force_queue/i18n/es_CO.po index d07b431e..8f1b4c0b 100644 --- a/mail_force_queue/i18n/es_CO.po +++ b/mail_force_queue/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_force_queue diff --git a/mail_force_queue/i18n/fr.po b/mail_force_queue/i18n/fr.po index fa88a401..5430c04d 100644 --- a/mail_force_queue/i18n/fr.po +++ b/mail_force_queue/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 # Quentin THEURET , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/hr.po b/mail_force_queue/i18n/hr.po index 6da34df0..6c4ff95c 100644 --- a/mail_force_queue/i18n/hr.po +++ b/mail_force_queue/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # Bole , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Bole , 2018\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_force_queue #: model:ir.model,name:mail_force_queue.model_res_company diff --git a/mail_force_queue/i18n/it.po b/mail_force_queue/i18n/it.po index f3fb7c01..8442d364 100644 --- a/mail_force_queue/i18n/it.po +++ b/mail_force_queue/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/mail_force_queue.pot b/mail_force_queue/i18n/mail_force_queue.pot new file mode 100644 index 00000000..d9894944 --- /dev/null +++ b/mail_force_queue/i18n/mail_force_queue.pot @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_force_queue +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_force_queue +#: model:ir.model,name:mail_force_queue.model_res_company +msgid "Companies" +msgstr "" + +#. module: mail_force_queue +#: model:ir.model.fields,field_description:mail_force_queue.field_base_config_settings_force_mail_queue +#: model:ir.model.fields,field_description:mail_force_queue.field_res_company_force_mail_queue +msgid "Force Mail queue" +msgstr "" + +#. module: mail_force_queue +#: model:ir.model.fields,help:mail_force_queue.field_base_config_settings_force_mail_queue +msgid "Force outgoing emails to be queued instead of sent immediately. Queued emails are sent by 'Email Queue Manager' cron" +msgstr "" + +#. module: mail_force_queue +#: model:ir.model,name:mail_force_queue.model_mail_message +msgid "Message" +msgstr "" + +#. module: mail_force_queue +#: model:ir.model,name:mail_force_queue.model_base_config_settings +msgid "base.config.settings" +msgstr "" + diff --git a/mail_force_queue/i18n/nb.po b/mail_force_queue/i18n/nb.po index 1b28712b..b193df63 100644 --- a/mail_force_queue/i18n/nb.po +++ b/mail_force_queue/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/nl.po b/mail_force_queue/i18n/nl.po index 097ddaa1..a299cfde 100644 --- a/mail_force_queue/i18n/nl.po +++ b/mail_force_queue/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/nl_NL.po b/mail_force_queue/i18n/nl_NL.po index c47283e4..0e5995c4 100644 --- a/mail_force_queue/i18n/nl_NL.po +++ b/mail_force_queue/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # Peter Hageman , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Peter Hageman , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_force_queue diff --git a/mail_force_queue/i18n/pt.po b/mail_force_queue/i18n/pt.po index 67e22a23..bff5bf3f 100644 --- a/mail_force_queue/i18n/pt.po +++ b/mail_force_queue/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # Pedro Castro Silva , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Pedro Castro Silva , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/pt_BR.po b/mail_force_queue/i18n/pt_BR.po index 16e7a33d..053ee265 100644 --- a/mail_force_queue/i18n/pt_BR.po +++ b/mail_force_queue/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/sl.po b/mail_force_queue/i18n/sl.po index 056138a8..9a72a46b 100644 --- a/mail_force_queue/i18n/sl.po +++ b/mail_force_queue/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_force_queue #: model:ir.model,name:mail_force_queue.model_res_company diff --git a/mail_force_queue/i18n/tr.po b/mail_force_queue/i18n/tr.po index bb5e07d6..868a10dd 100644 --- a/mail_force_queue/i18n/tr.po +++ b/mail_force_queue/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_force_queue diff --git a/mail_force_queue/i18n/tr_TR.po b/mail_force_queue/i18n/tr_TR.po index c3245234..d5aef9a8 100644 --- a/mail_force_queue/i18n/tr_TR.po +++ b/mail_force_queue/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_force_queue -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_force_queue From 0861e385974b18358a0d5a87f735095d55fdf5e1 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:44 +0000 Subject: [PATCH 28/86] [UPD] Update mail_full_expand.pot --- mail_full_expand/i18n/ca.po | 4 +-- mail_full_expand/i18n/de.po | 4 +-- mail_full_expand/i18n/es.po | 4 +-- mail_full_expand/i18n/es_CO.po | 7 +++-- mail_full_expand/i18n/fr.po | 4 +-- mail_full_expand/i18n/hr.po | 7 +++-- mail_full_expand/i18n/it.po | 4 +-- mail_full_expand/i18n/mail_full_expand.pot | 32 ++++++++++++++++++++++ mail_full_expand/i18n/nb.po | 7 +++-- mail_full_expand/i18n/nl.po | 4 +-- mail_full_expand/i18n/nl_NL.po | 7 +++-- mail_full_expand/i18n/pt.po | 4 +-- mail_full_expand/i18n/pt_BR.po | 7 +++-- mail_full_expand/i18n/sl.po | 7 +++-- mail_full_expand/i18n/tr.po | 4 +-- mail_full_expand/i18n/tr_TR.po | 7 +++-- 16 files changed, 76 insertions(+), 37 deletions(-) create mode 100644 mail_full_expand/i18n/mail_full_expand.pot diff --git a/mail_full_expand/i18n/ca.po b/mail_full_expand/i18n/ca.po index 92d35852..a9b5442c 100644 --- a/mail_full_expand/i18n/ca.po +++ b/mail_full_expand/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/de.po b/mail_full_expand/i18n/de.po index 6fa50591..64fa3559 100644 --- a/mail_full_expand/i18n/de.po +++ b/mail_full_expand/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/es.po b/mail_full_expand/i18n/es.po index e2013dd1..9fd3ef08 100644 --- a/mail_full_expand/i18n/es.po +++ b/mail_full_expand/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/es_CO.po b/mail_full_expand/i18n/es_CO.po index 9049b11f..ec5a5d90 100644 --- a/mail_full_expand/i18n/es_CO.po +++ b/mail_full_expand/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-29 14:24+0000\n" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_full_expand diff --git a/mail_full_expand/i18n/fr.po b/mail_full_expand/i18n/fr.po index e3f2c304..b39ba01d 100644 --- a/mail_full_expand/i18n/fr.po +++ b/mail_full_expand/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 # Quentin THEURET , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 09:45+0000\n" "Last-Translator: Quentin THEURET , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/hr.po b/mail_full_expand/i18n/hr.po index c5fc7264..9c1b1127 100644 --- a/mail_full_expand/i18n/hr.po +++ b/mail_full_expand/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # Bole , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: Bole , 2016\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_full_expand #. openerp-web diff --git a/mail_full_expand/i18n/it.po b/mail_full_expand/i18n/it.po index 6e27e815..4c987d17 100644 --- a/mail_full_expand/i18n/it.po +++ b/mail_full_expand/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 # Marius Marolla , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/mail_full_expand.pot b/mail_full_expand/i18n/mail_full_expand.pot new file mode 100644 index 00000000..cc935bb8 --- /dev/null +++ b/mail_full_expand/i18n/mail_full_expand.pot @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_full_expand +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_full_expand +#. openerp-web +#: code:addons/mail_full_expand/static/src/xml/mail_full_expand.xml:10 +#, python-format +msgid "Fully Expand" +msgstr "" + +#. module: mail_full_expand +#: model:ir.ui.view,arch_db:mail_full_expand.mail_message_view_form +msgid "Message" +msgstr "" + +#. module: mail_full_expand +#: model:ir.actions.act_window,name:mail_full_expand.mail_message_action +msgid "Read Full Email" +msgstr "" + diff --git a/mail_full_expand/i18n/nb.po b/mail_full_expand/i18n/nb.po index e574facf..457ebd89 100644 --- a/mail_full_expand/i18n/nb.po +++ b/mail_full_expand/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-29 14:24+0000\n" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/nl.po b/mail_full_expand/i18n/nl.po index 50ab4f58..bddd86d5 100644 --- a/mail_full_expand/i18n/nl.po +++ b/mail_full_expand/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/nl_NL.po b/mail_full_expand/i18n/nl_NL.po index 182077a7..1c78e74c 100644 --- a/mail_full_expand/i18n/nl_NL.po +++ b/mail_full_expand/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-05-20 08:36+0000\n" "PO-Revision-Date: 2017-05-20 08:36+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_full_expand diff --git a/mail_full_expand/i18n/pt.po b/mail_full_expand/i18n/pt.po index 2324c2e3..6f64ca56 100644 --- a/mail_full_expand/i18n/pt.po +++ b/mail_full_expand/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # Pedro Castro Silva , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:17+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/pt_BR.po b/mail_full_expand/i18n/pt_BR.po index 21cf8f96..42aa9b4f 100644 --- a/mail_full_expand/i18n/pt_BR.po +++ b/mail_full_expand/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-29 14:24+0000\n" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/sl.po b/mail_full_expand/i18n/sl.po index 74e97957..c9f9916c 100644 --- a/mail_full_expand/i18n/sl.po +++ b/mail_full_expand/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_full_expand #. openerp-web diff --git a/mail_full_expand/i18n/tr.po b/mail_full_expand/i18n/tr.po index 9dd5e592..cc113475 100644 --- a/mail_full_expand/i18n/tr.po +++ b/mail_full_expand/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_full_expand diff --git a/mail_full_expand/i18n/tr_TR.po b/mail_full_expand/i18n/tr_TR.po index 1684dde5..1d11be98 100644 --- a/mail_full_expand/i18n/tr_TR.po +++ b/mail_full_expand/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_full_expand -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-11-29 14:24+0000\n" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mail_full_expand From 24dc9ceb8f4d510b7ed881750a895146e4db83f1 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:45 +0000 Subject: [PATCH 29/86] [UPD] Update mail_improved_tracking_value.pot --- .../i18n/mail_improved_tracking_value.pot | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 mail_improved_tracking_value/i18n/mail_improved_tracking_value.pot diff --git a/mail_improved_tracking_value/i18n/mail_improved_tracking_value.pot b/mail_improved_tracking_value/i18n/mail_improved_tracking_value.pot new file mode 100644 index 00000000..22af7ba4 --- /dev/null +++ b/mail_improved_tracking_value/i18n/mail_improved_tracking_value.pot @@ -0,0 +1,88 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_improved_tracking_value +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_form_view +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list +msgid "Field changed" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_form_view +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list +msgid "For" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list_filter +msgid "Group by" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.menu,name:mail_improved_tracking_value.menu_action_view_tracking_changes +msgid "Improved tracking values" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model,name:mail_improved_tracking_value.model_mail_tracking_value +msgid "Mail Tracking Value" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model.fields,field_description:mail_improved_tracking_value.field_mail_tracking_value_record_name +msgid "Message Record Name" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model.fields,field_description:mail_improved_tracking_value.field_mail_tracking_value_model +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list_filter +msgid "Model" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model.fields,help:mail_improved_tracking_value.field_mail_tracking_value_record_name +msgid "Name get of the related document." +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model.fields,field_description:mail_improved_tracking_value.field_mail_tracking_value_new_value_formatted +msgid "New value" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.model.fields,field_description:mail_improved_tracking_value.field_mail_tracking_value_old_value_formatted +msgid "Old value" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list +msgid "On" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list_filter +msgid "Search" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.ui.view,arch_db:mail_improved_tracking_value.tracking_change_list +msgid "Tracking change list" +msgstr "" + +#. module: mail_improved_tracking_value +#: model:ir.actions.act_window,name:mail_improved_tracking_value.action_view_tracking_changes +msgid "View last tracked changes" +msgstr "" + From 280ea7077ea17f2c0f1e9cfe4818b4bda4220af6 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:46 +0000 Subject: [PATCH 30/86] [UPD] Update mail_inline_css.pot --- mail_inline_css/i18n/de.po | 4 ++-- mail_inline_css/i18n/es.po | 4 ++-- mail_inline_css/i18n/es_MX.po | 7 ++++--- mail_inline_css/i18n/fr.po | 4 ++-- mail_inline_css/i18n/hr.po | 7 ++++--- mail_inline_css/i18n/it.po | 4 ++-- mail_inline_css/i18n/mail_inline_css.pot | 20 ++++++++++++++++++++ mail_inline_css/i18n/nl_NL.po | 7 ++++--- mail_inline_css/i18n/zh_CN.po | 7 ++++--- 9 files changed, 44 insertions(+), 20 deletions(-) create mode 100644 mail_inline_css/i18n/mail_inline_css.pot diff --git a/mail_inline_css/i18n/de.po b/mail_inline_css/i18n/de.po index 9e6716c3..9410bae6 100644 --- a/mail_inline_css/i18n/de.po +++ b/mail_inline_css/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # Niki Waibel , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Niki Waibel , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_inline_css diff --git a/mail_inline_css/i18n/es.po b/mail_inline_css/i18n/es.po index 41d3cc7a..f9e8adff 100644 --- a/mail_inline_css/i18n/es.po +++ b/mail_inline_css/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # Pedro M. Baeza , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Pedro M. Baeza , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_inline_css diff --git a/mail_inline_css/i18n/es_MX.po b/mail_inline_css/i18n/es_MX.po index cd9dda43..6f0a1ddc 100644 --- a/mail_inline_css/i18n/es_MX.po +++ b/mail_inline_css/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mail_inline_css diff --git a/mail_inline_css/i18n/fr.po b/mail_inline_css/i18n/fr.po index 7abb20d2..2c65dc44 100644 --- a/mail_inline_css/i18n/fr.po +++ b/mail_inline_css/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # Quentin THEURET , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_inline_css diff --git a/mail_inline_css/i18n/hr.po b/mail_inline_css/i18n/hr.po index 1169493f..09a454f2 100644 --- a/mail_inline_css/i18n/hr.po +++ b/mail_inline_css/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_inline_css #: model:ir.model,name:mail_inline_css.model_mail_template diff --git a/mail_inline_css/i18n/it.po b/mail_inline_css/i18n/it.po index 2ffe5bac..0e35e8cf 100644 --- a/mail_inline_css/i18n/it.po +++ b/mail_inline_css/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # Marius Marolla , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Marius Marolla , 2018\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_inline_css diff --git a/mail_inline_css/i18n/mail_inline_css.pot b/mail_inline_css/i18n/mail_inline_css.pot new file mode 100644 index 00000000..c7f5e2a4 --- /dev/null +++ b/mail_inline_css/i18n/mail_inline_css.pot @@ -0,0 +1,20 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_inline_css +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_inline_css +#: model:ir.model,name:mail_inline_css.model_mail_template +msgid "Email Templates" +msgstr "" + diff --git a/mail_inline_css/i18n/nl_NL.po b/mail_inline_css/i18n/nl_NL.po index 5b7f5b19..c92add5c 100644 --- a/mail_inline_css/i18n/nl_NL.po +++ b/mail_inline_css/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # Peter Hageman , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: Peter Hageman , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_inline_css diff --git a/mail_inline_css/i18n/zh_CN.po b/mail_inline_css/i18n/zh_CN.po index 3901317e..19c6cce4 100644 --- a/mail_inline_css/i18n/zh_CN.po +++ b/mail_inline_css/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_inline_css -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_inline_css From 27b9796543aebd5c2b0c1d24db00e02be1c4d9ae Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:46 +0000 Subject: [PATCH 31/86] [UPD] Update mail_notify_bounce.pot --- .../i18n/mail_notify_bounce.pot | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 mail_notify_bounce/i18n/mail_notify_bounce.pot diff --git a/mail_notify_bounce/i18n/mail_notify_bounce.pot b/mail_notify_bounce/i18n/mail_notify_bounce.pot new file mode 100644 index 00000000..d51c37d9 --- /dev/null +++ b/mail_notify_bounce/i18n/mail_notify_bounce.pot @@ -0,0 +1,37 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_notify_bounce +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_notify_bounce +#: model:ir.model,name:mail_notify_bounce.model_mail_thread +msgid "Email Thread" +msgstr "" + +#. module: mail_notify_bounce +#: model:ir.model.fields,field_description:mail_notify_bounce.field_fetchmail_server_bounce_notify_partner_ids +#: model:ir.ui.view,arch_db:mail_notify_bounce.view_email_server_form_bounce_address +msgid "Notify bounce emails to" +msgstr "" + +#. module: mail_notify_bounce +#: model:ir.model,name:mail_notify_bounce.model_fetchmail_server +msgid "POP/IMAP Server" +msgstr "" + +#. module: mail_notify_bounce +#: code:addons/mail_notify_bounce/models/mail_thread.py:64 +#, python-format +msgid "Raw message:" +msgstr "" + From e77cccb2ff6a2a1632d3c7be5ec955484afa9292 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:47 +0000 Subject: [PATCH 32/86] [UPD] Update mail_optional_autofollow.pot --- mail_optional_autofollow/i18n/ca.po | 11 +++---- mail_optional_autofollow/i18n/de.po | 11 +++---- mail_optional_autofollow/i18n/es.po | 11 +++---- mail_optional_autofollow/i18n/es_CO.po | 11 +++---- mail_optional_autofollow/i18n/fr.po | 11 ++++--- mail_optional_autofollow/i18n/hr.po | 14 +++++---- mail_optional_autofollow/i18n/it.po | 4 +-- .../i18n/mail_optional_autofollow.pot | 30 +++++++++++++++++++ mail_optional_autofollow/i18n/pt_BR.po | 11 +++---- mail_optional_autofollow/i18n/sl.po | 10 ++++--- 10 files changed, 84 insertions(+), 40 deletions(-) create mode 100644 mail_optional_autofollow/i18n/mail_optional_autofollow.pot diff --git a/mail_optional_autofollow/i18n/ca.po b/mail_optional_autofollow/i18n/ca.po index d5748082..24ca56ec 100644 --- a/mail_optional_autofollow/i18n/ca.po +++ b/mail_optional_autofollow/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 07:09+0000\n" "PO-Revision-Date: 2016-04-05 07:05+0000\n" "Last-Translator: <>\n" -"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-8-0/language/ca/)\n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-social-8-0/language/" +"ca/)\n" +"Language: 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: mail_optional_autofollow @@ -23,12 +24,12 @@ msgid "Email composition wizard" msgstr "Assistent per composició de correus electrònics" #. module: mail_optional_autofollow -#: field:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "Make recipients followers" msgstr "" #. module: mail_optional_autofollow -#: help:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "" "if checked, the additional recipients will be added as followers on " "the related object" diff --git a/mail_optional_autofollow/i18n/de.po b/mail_optional_autofollow/i18n/de.po index c2cc1036..7485660d 100644 --- a/mail_optional_autofollow/i18n/de.po +++ b/mail_optional_autofollow/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 07:09+0000\n" "PO-Revision-Date: 2016-04-05 07:05+0000\n" "Last-Translator: <>\n" -"Language-Team: German (http://www.transifex.com/oca/OCA-social-8-0/language/de/)\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-social-8-0/language/" +"de/)\n" +"Language: 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: mail_optional_autofollow @@ -23,12 +24,12 @@ msgid "Email composition wizard" msgstr "Assistent zum Email verfassen" #. module: mail_optional_autofollow -#: field:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "Make recipients followers" msgstr "" #. module: mail_optional_autofollow -#: help:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "" "if checked, the additional recipients will be added as followers on " "the related object" diff --git a/mail_optional_autofollow/i18n/es.po b/mail_optional_autofollow/i18n/es.po index dc04d6ad..383e04f0 100644 --- a/mail_optional_autofollow/i18n/es.po +++ b/mail_optional_autofollow/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 07:09+0000\n" "PO-Revision-Date: 2016-04-05 07:05+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-social-8-0/language/es/)\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-social-8-0/language/" +"es/)\n" +"Language: 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: mail_optional_autofollow @@ -23,12 +24,12 @@ msgid "Email composition wizard" msgstr "Asistente composición Correo Electrónico" #. module: mail_optional_autofollow -#: field:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "Make recipients followers" msgstr "" #. module: mail_optional_autofollow -#: help:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "" "if checked, the additional recipients will be added as followers on " "the related object" diff --git a/mail_optional_autofollow/i18n/es_CO.po b/mail_optional_autofollow/i18n/es_CO.po index 0659cee1..ad0cee83 100644 --- a/mail_optional_autofollow/i18n/es_CO.po +++ b/mail_optional_autofollow/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 07:09+0000\n" "PO-Revision-Date: 2016-04-05 07:05+0000\n" "Last-Translator: <>\n" -"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-social-8-0/language/es_CO/)\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-" +"social-8-0/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" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_optional_autofollow @@ -23,12 +24,12 @@ msgid "Email composition wizard" msgstr "Asistente de redacción de E-mail" #. module: mail_optional_autofollow -#: field:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "Make recipients followers" msgstr "" #. module: mail_optional_autofollow -#: help:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "" "if checked, the additional recipients will be added as followers on " "the related object" diff --git a/mail_optional_autofollow/i18n/fr.po b/mail_optional_autofollow/i18n/fr.po index b30a8a4a..64ad0856 100644 --- a/mail_optional_autofollow/i18n/fr.po +++ b/mail_optional_autofollow/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-06-12 02:44+0000\n" "PO-Revision-Date: 2016-06-11 22:15+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: French (http://www.transifex.com/oca/OCA-social-9-0/language/fr/)\n" +"Language-Team: French (http://www.transifex.com/oca/OCA-social-9-0/language/" +"fr/)\n" +"Language: 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: mail_optional_autofollow @@ -32,4 +33,6 @@ msgstr "Abonner les destinataires" msgid "" "if checked, the additional recipients will be added as followers on " "the related object" -msgstr "Si coché, les destinataires supplémentaires seront ajoutés comme abonné au file de discussion sur l'objet lié" +msgstr "" +"Si coché, les destinataires supplémentaires seront ajoutés comme abonné au " +"file de discussion sur l'objet lié" diff --git a/mail_optional_autofollow/i18n/hr.po b/mail_optional_autofollow/i18n/hr.po index 2c008762..18ed63a3 100644 --- a/mail_optional_autofollow/i18n/hr.po +++ b/mail_optional_autofollow/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: # Bole , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-06-13 02:44+0000\n" "PO-Revision-Date: 2016-06-14 11:31+0000\n" "Last-Translator: Bole \n" -"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-9-0/language/hr/)\n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-social-9-0/" +"language/hr/)\n" +"Language: 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" +"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: mail_optional_autofollow #: model:ir.model,name:mail_optional_autofollow.model_mail_compose_message @@ -33,4 +35,6 @@ msgstr "Učini primatelje i pratiteljima" msgid "" "if checked, the additional recipients will be added as followers on " "the related object" -msgstr "Ukoliko je označeno, dodatni primatelji će biti dodani i kao pratitelji na povezanom objektu" +msgstr "" +"Ukoliko je označeno, dodatni primatelji će biti dodani i kao pratitelji na " +"povezanom objektu" diff --git a/mail_optional_autofollow/i18n/it.po b/mail_optional_autofollow/i18n/it.po index 6523691d..ec6f3bc2 100644 --- a/mail_optional_autofollow/i18n/it.po +++ b/mail_optional_autofollow/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: # Marius Marolla , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_optional_autofollow diff --git a/mail_optional_autofollow/i18n/mail_optional_autofollow.pot b/mail_optional_autofollow/i18n/mail_optional_autofollow.pot new file mode 100644 index 00000000..690021fa --- /dev/null +++ b/mail_optional_autofollow/i18n/mail_optional_autofollow.pot @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_optional_autofollow +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_optional_autofollow +#: model:ir.model,name:mail_optional_autofollow.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: mail_optional_autofollow +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients +msgid "Make recipients followers" +msgstr "" + +#. module: mail_optional_autofollow +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients +msgid "if checked, the additional recipients will be added as followers on the related object" +msgstr "" + diff --git a/mail_optional_autofollow/i18n/pt_BR.po b/mail_optional_autofollow/i18n/pt_BR.po index d72d30b7..eb6bbcd2 100644 --- a/mail_optional_autofollow/i18n/pt_BR.po +++ b/mail_optional_autofollow/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: msgid "" msgstr "" @@ -10,11 +10,12 @@ msgstr "" "POT-Creation-Date: 2016-04-14 07:09+0000\n" "PO-Revision-Date: 2016-04-05 07:05+0000\n" "Last-Translator: <>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-social-8-0/language/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-" +"social-8-0/language/pt_BR/)\n" +"Language: 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: mail_optional_autofollow @@ -23,12 +24,12 @@ msgid "Email composition wizard" msgstr "Assistente de Composição de Email" #. module: mail_optional_autofollow -#: field:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,field_description:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "Make recipients followers" msgstr "" #. module: mail_optional_autofollow -#: help:mail.compose.message,autofollow_recipients:0 +#: model:ir.model.fields,help:mail_optional_autofollow.field_mail_compose_message_autofollow_recipients msgid "" "if checked, the additional recipients will be added as followers on " "the related object" diff --git a/mail_optional_autofollow/i18n/sl.po b/mail_optional_autofollow/i18n/sl.po index 9b86623c..ccfab1a6 100644 --- a/mail_optional_autofollow/i18n/sl.po +++ b/mail_optional_autofollow/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_autofollow -# +# # Translators: # Matjaž Mozetič , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-06-12 02:44+0000\n" "PO-Revision-Date: 2016-06-11 22:15+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-9-0/language/sl/)\n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-social-9-0/" +"language/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_optional_autofollow #: model:ir.model,name:mail_optional_autofollow.model_mail_compose_message From 6eed37cfda8b39e2ab40cfd73bdb931c92024a2e Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:48 +0000 Subject: [PATCH 33/86] [UPD] Update mail_optional_follower_notification.pot --- .../i18n/am.po | 12 +++--- .../i18n/ar.po | 15 +++---- .../i18n/bg.po | 12 +++--- .../i18n/bs.po | 15 +++---- .../i18n/ca.po | 12 +++--- .../i18n/cs.po | 12 +++--- .../i18n/da.po | 12 +++--- .../i18n/de.po | 12 +++--- .../i18n/el_GR.po | 15 +++---- .../i18n/en.po | 31 +++++++++----- .../i18n/en_GB.po | 15 +++---- .../i18n/es.po | 12 +++--- .../i18n/es_CO.po | 23 ++++++----- .../i18n/es_CR.po | 15 +++---- .../i18n/es_EC.po | 15 +++---- .../i18n/es_MX.po | 15 +++---- .../i18n/es_VE.po | 15 +++---- .../i18n/et.po | 12 +++--- .../i18n/eu.po | 12 +++--- .../i18n/fi.po | 12 +++--- .../i18n/fr.po | 20 +++++----- .../i18n/fr_CA.po | 15 +++---- .../i18n/fr_CH.po | 15 +++---- .../i18n/gl.po | 12 +++--- .../i18n/hr.po | 15 +++---- .../i18n/hr_HR.po | 18 +++++---- .../i18n/hu.po | 12 +++--- .../i18n/it.po | 16 ++++---- .../i18n/ja.po | 12 +++--- .../i18n/lt.po | 15 +++---- .../i18n/lv.po | 15 +++---- .../mail_optional_follower_notification.pot | 40 +++++++++++++++++++ .../i18n/mk.po | 12 +++--- .../i18n/mn.po | 12 +++--- .../i18n/nb.po | 15 +++---- .../i18n/nb_NO.po | 15 +++---- .../i18n/nl.po | 12 +++--- .../i18n/nl_BE.po | 15 +++---- .../i18n/nl_NL.po | 15 +++---- .../i18n/pl.po | 16 ++++---- .../i18n/pt.po | 12 +++--- .../i18n/pt_BR.po | 15 +++---- .../i18n/pt_PT.po | 15 +++---- .../i18n/ro.po | 15 +++---- .../i18n/ru.po | 16 ++++---- .../i18n/sk.po | 12 +++--- .../i18n/sl.po | 15 +++---- .../i18n/sr@latin.po | 18 +++++---- .../i18n/sv.po | 12 +++--- .../i18n/th.po | 12 +++--- .../i18n/tr.po | 12 +++--- .../i18n/tr_TR.po | 15 +++---- .../i18n/vi.po | 12 +++--- .../i18n/zh_CN.po | 15 +++---- .../i18n/zh_TW.po | 15 +++---- 55 files changed, 453 insertions(+), 369 deletions(-) create mode 100644 mail_optional_follower_notification/i18n/mail_optional_follower_notification.pot diff --git a/mail_optional_follower_notification/i18n/am.po b/mail_optional_follower_notification/i18n/am.po index 9dca0933..e6e60ce9 100644 --- a/mail_optional_follower_notification/i18n/am.po +++ b/mail_optional_follower_notification/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_optional_follower_notification -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,19 +12,19 @@ msgstr "" "PO-Revision-Date: 2017-05-17 01:02+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_optional_follower_notification #: model:ir.ui.view,arch_db:mail_optional_follower_notification.email_compose_message_wizard_inherit_form msgid "" -", 2016 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/bg.po b/mail_tracking/i18n/bg.po index 60f65aaf..321b6eec 100644 --- a/mail_tracking/i18n/bg.po +++ b/mail_tracking/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/bs.po b/mail_tracking/i18n/bs.po index 019fd45f..6518dd0a 100644 --- a/mail_tracking/i18n/bs.po +++ b/mail_tracking/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/ca.po b/mail_tracking/i18n/ca.po index fdb7a00d..c9013624 100644 --- a/mail_tracking/i18n/ca.po +++ b/mail_tracking/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "Missatge" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "Esdeveniments de seguiment" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/cs.po b/mail_tracking/i18n/cs.po index 2921fa86..03ac5dd5 100644 --- a/mail_tracking/i18n/cs.po +++ b/mail_tracking/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/da.po b/mail_tracking/i18n/da.po index 2a8ef6cd..e0a5aa5f 100644 --- a/mail_tracking/i18n/da.po +++ b/mail_tracking/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/de.po b/mail_tracking/i18n/de.po index dc5e3b84..997e2ed4 100644 --- a/mail_tracking/i18n/de.po +++ b/mail_tracking/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "Nachricht" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "Verfolge Vorkommnisse" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/el_GR.po b/mail_tracking/i18n/el_GR.po index 2b28d4c9..569bb846 100644 --- a/mail_tracking/i18n/el_GR.po +++ b/mail_tracking/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/en_GB.po b/mail_tracking/i18n/en_GB.po index cccb4347..6fa9d524 100644 --- a/mail_tracking/i18n/en_GB.po +++ b/mail_tracking/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es.po b/mail_tracking/i18n/es.po index 21d66d03..f5fef657 100644 --- a/mail_tracking/i18n/es.po +++ b/mail_tracking/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "Mensaje" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "Eventos de seguimiento" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_AR.po b/mail_tracking/i18n/es_AR.po index df722447..2c7ee873 100644 --- a/mail_tracking/i18n/es_AR.po +++ b/mail_tracking/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_CL.po b/mail_tracking/i18n/es_CL.po index 32b7fefd..7ef3a19c 100644 --- a/mail_tracking/i18n/es_CL.po +++ b/mail_tracking/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_CO.po b/mail_tracking/i18n/es_CO.po index 17999c41..9b0edcf2 100644 --- a/mail_tracking/i18n/es_CO.po +++ b/mail_tracking/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "Mensaje" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_CR.po b/mail_tracking/i18n/es_CR.po index fce4eb03..74f92a84 100644 --- a/mail_tracking/i18n/es_CR.po +++ b/mail_tracking/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +140,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +301,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +328,7 @@ msgstr "Empresa" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +419,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_DO.po b/mail_tracking/i18n/es_DO.po index 9f83f784..2ea402a4 100644 --- a/mail_tracking/i18n/es_DO.po +++ b/mail_tracking/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_EC.po b/mail_tracking/i18n/es_EC.po index fe4b9411..a3ba9433 100644 --- a/mail_tracking/i18n/es_EC.po +++ b/mail_tracking/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_ES.po b/mail_tracking/i18n/es_ES.po index f8947575..b9d0520a 100644 --- a/mail_tracking/i18n/es_ES.po +++ b/mail_tracking/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_MX.po b/mail_tracking/i18n/es_MX.po index 899eee65..81bf6558 100644 --- a/mail_tracking/i18n/es_MX.po +++ b/mail_tracking/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_PE.po b/mail_tracking/i18n/es_PE.po index 63aa39f8..32793373 100644 --- a/mail_tracking/i18n/es_PE.po +++ b/mail_tracking/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_PY.po b/mail_tracking/i18n/es_PY.po index b6afa58f..2d5529cb 100644 --- a/mail_tracking/i18n/es_PY.po +++ b/mail_tracking/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/es_VE.po b/mail_tracking/i18n/es_VE.po index ec6ad235..643a00d4 100644 --- a/mail_tracking/i18n/es_VE.po +++ b/mail_tracking/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/et.po b/mail_tracking/i18n/et.po index a224eab2..75129d0a 100644 --- a/mail_tracking/i18n/et.po +++ b/mail_tracking/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/eu.po b/mail_tracking/i18n/eu.po index 26332d47..f33b8c8e 100644 --- a/mail_tracking/i18n/eu.po +++ b/mail_tracking/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/fa.po b/mail_tracking/i18n/fa.po index 82ff295c..91d8891f 100644 --- a/mail_tracking/i18n/fa.po +++ b/mail_tracking/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: 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=1; plural=0;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/fi.po b/mail_tracking/i18n/fi.po index 1f331c22..9670d8e2 100644 --- a/mail_tracking/i18n/fi.po +++ b/mail_tracking/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "Seurattavat tapahtumat" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/fr.po b/mail_tracking/i18n/fr.po index c9a12200..3d34d4c3 100644 --- a/mail_tracking/i18n/fr.po +++ b/mail_tracking/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 # Quentin THEURET , 2017 @@ -13,34 +13,54 @@ msgstr "" "PO-Revision-Date: 2017-07-22 09:45+0000\n" "Last-Translator: Quentin THEURET , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" -"* Le statut 'Erreur' indique qu'il y a eu une erreur lors de la tentative d'envoi du courrier, par exemple, 'Pas de destinataire valide'\n" -"* Le statut 'Envoyé' indique que le message a été envoyé avec succès via le serveur de courriel sortant (SMTP).\n" -"* Le statut 'Délivré' indique que le message a été délivré avec succès au destinataire du serveur Mail Exchange (MX).\n" -"* Le statut 'Ouvert' indique que le message a été ouvert ou cliqué par le destinataire.\n" -"* Le statut 'Rejeté' indique que l'adresse du destinataire est en liste noire sur le serveur de courriels sortant (SMTP). Il est recommandé de supprimé cette adresse courriel.\n" -"* Le statut 'Spam' indique que le serveur de courriels sortant (SMTP) considère ce message comme un spam.\n" -"* Le statut 'Désinscrit' indique que le destinataire a demandé à se désinscrire de la liste depuis ce message.\n" -"* Le statut 'Rebondi' indique que le message a rebondi sur le serveur Mail Exchange (MX) du destinataire.\n" -"* Le statut 'Rebondi temporairement' indique que le message a rebondi temporairement sur le serveur Mail Exchange (MX) du destinataire.\n" +"* Le statut 'Erreur' indique qu'il y a eu une erreur lors de la tentative " +"d'envoi du courrier, par exemple, 'Pas de destinataire valide'\n" +"* Le statut 'Envoyé' indique que le message a été envoyé avec succès via le " +"serveur de courriel sortant (SMTP).\n" +"* Le statut 'Délivré' indique que le message a été délivré avec succès au " +"destinataire du serveur Mail Exchange (MX).\n" +"* Le statut 'Ouvert' indique que le message a été ouvert ou cliqué par le " +"destinataire.\n" +"* Le statut 'Rejeté' indique que l'adresse du destinataire est en liste " +"noire sur le serveur de courriels sortant (SMTP). Il est recommandé de " +"supprimé cette adresse courriel.\n" +"* Le statut 'Spam' indique que le serveur de courriels sortant (SMTP) " +"considère ce message comme un spam.\n" +"* Le statut 'Désinscrit' indique que le destinataire a demandé à se " +"désinscrire de la liste depuis ce message.\n" +"* Le statut 'Rebondi' indique que le message a rebondi sur le serveur Mail " +"Exchange (MX) du destinataire.\n" +"* Le statut 'Rebondi temporairement' indique que le message a rebondi " +"temporairement sur le serveur Mail Exchange (MX) du destinataire.\n" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search @@ -280,7 +300,7 @@ msgstr "Message" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "Destinataire du courriel" @@ -438,7 +458,7 @@ msgstr "Suivi du courriel: évènements" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "Partenaire suivi" diff --git a/mail_tracking/i18n/fr_CA.po b/mail_tracking/i18n/fr_CA.po index 74658b2a..8317c30a 100644 --- a/mail_tracking/i18n/fr_CA.po +++ b/mail_tracking/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # Adriana Ierfino , 2016 # Martin Malorni , 2016 @@ -13,25 +13,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -131,8 +142,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -264,7 +283,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -284,11 +303,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -307,6 +330,7 @@ msgstr "Partenaire" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -319,6 +343,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -396,7 +421,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -404,6 +428,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -416,7 +441,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/fr_CH.po b/mail_tracking/i18n/fr_CH.po index 87c7e5cd..fd8b2b79 100644 --- a/mail_tracking/i18n/fr_CH.po +++ b/mail_tracking/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/fr_FR.po b/mail_tracking/i18n/fr_FR.po index 6bfdee76..a87b7630 100644 --- a/mail_tracking/i18n/fr_FR.po +++ b/mail_tracking/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 # Mohamed HABOU , 2016 @@ -12,25 +12,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: Mohamed HABOU , 2016\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -130,8 +141,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -263,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -283,11 +302,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -306,6 +329,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -318,6 +342,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -395,7 +420,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -403,6 +427,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -415,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/gl.po b/mail_tracking/i18n/gl.po index b59d9330..d2ee4862 100644 --- a/mail_tracking/i18n/gl.po +++ b/mail_tracking/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/gl_ES.po b/mail_tracking/i18n/gl_ES.po index 6a6d018c..00fcb2d6 100644 --- a/mail_tracking/i18n/gl_ES.po +++ b/mail_tracking/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # Alejandro Santana , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: Alejandro Santana , 2016\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +140,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +301,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +328,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +419,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/he.po b/mail_tracking/i18n/he.po index f2937144..acde52ee 100644 --- a/mail_tracking/i18n/he.po +++ b/mail_tracking/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: 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=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/hr.po b/mail_tracking/i18n/hr.po index 85f11a14..9924d61c 100644 --- a/mail_tracking/i18n/hr.po +++ b/mail_tracking/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 # Bole , 2017 @@ -13,24 +13,35 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -271,7 +282,7 @@ msgstr "Poruka" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -429,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/hr_HR.po b/mail_tracking/i18n/hr_HR.po index c61da637..6fcf3357 100644 --- a/mail_tracking/i18n/hr_HR.po +++ b/mail_tracking/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,37 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/hu.po b/mail_tracking/i18n/hu.po index 4fdaaebc..e595e020 100644 --- a/mail_tracking/i18n/hu.po +++ b/mail_tracking/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/id.po b/mail_tracking/i18n/id.po index 47dcd7c3..5e8a1490 100644 --- a/mail_tracking/i18n/id.po +++ b/mail_tracking/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/it.po b/mail_tracking/i18n/it.po index 3beee617..dd630953 100644 --- a/mail_tracking/i18n/it.po +++ b/mail_tracking/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 # Marius Marolla , 2017 @@ -14,24 +14,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Paolo Valier , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -272,7 +282,7 @@ msgstr "Messaggio" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -430,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/ja.po b/mail_tracking/i18n/ja.po index c5b8a922..563553f9 100644 --- a/mail_tracking/i18n/ja.po +++ b/mail_tracking/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/ko.po b/mail_tracking/i18n/ko.po index 58cc15ec..30f6ef36 100644 --- a/mail_tracking/i18n/ko.po +++ b/mail_tracking/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/lt.po b/mail_tracking/i18n/lt.po index bbe65498..8718185a 100644 --- a/mail_tracking/i18n/lt.po +++ b/mail_tracking/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/lt_LT.po b/mail_tracking/i18n/lt_LT.po index 0ce62a9e..3ac082f7 100644 --- a/mail_tracking/i18n/lt_LT.po +++ b/mail_tracking/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # Arminas Grigonis , 2016 msgid "" @@ -11,25 +11,37 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: Arminas Grigonis , 2016\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +141,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +302,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +329,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +342,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +420,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +427,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/lv.po b/mail_tracking/i18n/lv.po index a3ad8cd3..6b15132c 100644 --- a/mail_tracking/i18n/lv.po +++ b/mail_tracking/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2016-11-29 14:24+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -131,17 +142,14 @@ msgstr "E-pasts" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced #: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter msgid "Email bounced" msgstr "" -#. module: mail_tracking -#: model:ir.model,name:mail_tracking.model_mail_compose_message -msgid "Email composition wizard" -msgstr "" - #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -273,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -320,6 +328,7 @@ msgstr "Partneris" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -332,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -416,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/mail_tracking.pot b/mail_tracking/i18n/mail_tracking.pot new file mode 100644 index 00000000..87c32607 --- /dev/null +++ b/mail_tracking/i18n/mail_tracking.pot @@ -0,0 +1,492 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_tracking +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_tracking +#: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state +msgid " * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" +" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +"" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Bounce" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_bounce_description +msgid "Bounce description" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_bounce_type +msgid "Bounce type" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Bounced" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Click" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.event,event_type:0 +msgid "Clicked" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_url +msgid "Clicked URL" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_form +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_tree +msgid "Country" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_create_uid +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_create_uid +msgid "Created by" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_create_date +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_create_date +msgid "Created on" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_date +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_date +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Date" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.event,event_type:0 +msgid "Deferral" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: selection:mail.tracking.email,state:0 +msgid "Deferred" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: selection:mail.tracking.email,state:0 +#: selection:mail.tracking.event,event_type:0 +msgid "Delivered" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_display_name +msgid "Display Name" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_display_name +msgid "Display name" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_mail_id +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +msgid "Email" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score +msgid "Email score" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_form +#: selection:mail.tracking.email,state:0 +msgid "Error" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_error_smtp_server +msgid "Error SMTP server" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_error_description +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_error_description +msgid "Error description" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_error_details +msgid "Error details" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_error_type +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_error_type +msgid "Error type" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_event_type +msgid "Event type" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Failed" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Group By" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.event,event_type:0 +msgid "Hard bounce" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_id +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_id +msgid "ID" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "IP" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_mobile +msgid "Is mobile?" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email___last_update +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_write_uid +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_write_date +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_mail_tracking_email +msgid "MailTracking email" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +msgid "MailTracking email search" +msgstr "" + +#. module: mail_tracking +#: model:ir.actions.act_window,name:mail_tracking.action_view_mail_tracking_email +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree +msgid "MailTracking emails" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_mail_tracking_event +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_form +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_form +msgid "MailTracking event" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "MailTracking event search" +msgstr "" + +#. module: mail_tracking +#: model:ir.actions.act_window,name:mail_tracking.action_view_mail_tracking_event +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_tree +msgid "MailTracking events" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_mail_message +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_mail_message_id +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_tracking_email_id +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Message" +msgstr "" + +#. module: mail_tracking +#. openerp-web +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 +#, python-format +msgid "Message tracking" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Month" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_form +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_tree +msgid "OS" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: selection:mail.tracking.event,event_type:0 +msgid "Open" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family +msgid "Operating system family" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_res_partner +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_partner_id +msgid "Partner" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Recipient" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient +msgid "Recipient email" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address +msgid "Recipient email address" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +#: selection:mail.tracking.event,event_type:0 +msgid "Rejected" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_smtp_server +msgid "SMTP server" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree +msgid "Sender" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_sender +msgid "Sender email" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: selection:mail.tracking.email,state:0 +#: selection:mail.tracking.event,event_type:0 +msgid "Sent" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.event,event_type:0 +msgid "Soft bounce" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Soft bounced" +msgstr "" + +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +#: selection:mail.tracking.event,event_type:0 +msgid "Spam" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_state +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +msgid "State" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_name +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +msgid "Subject" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_time +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_time +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Time" +msgstr "" + +#. module: mail_tracking +#. openerp-web +#: code:addons/mail_tracking/static/src/xml/mail_tracking.xml:46 +#, python-format +msgid "To:" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email +#: model:ir.ui.view,arch_db:mail_tracking.view_partner_form +msgid "Tracking emails" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count +msgid "Tracking emails count" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_tracking_event_ids +#: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_event +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_form +msgid "Tracking events" +msgstr "" + +#. module: mail_tracking +#. openerp-web +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 +#, python-format +msgid "Tracking partner" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Type" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "URL" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_timestamp +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_timestamp +msgid "UTC timestamp" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "Unsubscribe" +msgstr "" + +#. module: mail_tracking +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search +#: selection:mail.tracking.email,state:0 +#: selection:mail.tracking.event,event_type:0 +msgid "Unsubscribed" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_ip +msgid "User IP" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_user_agent +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_form +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_tree +msgid "User agent" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_ua_family +msgid "User agent family" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_ua_type +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search +msgid "User agent type" +msgstr "" + +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_user_country_id +msgid "User country" +msgstr "" + +#. module: mail_tracking +#: model:ir.model,name:mail_tracking.model_ir_mail_server +msgid "ir.mail_server" +msgstr "" + diff --git a/mail_tracking/i18n/mk.po b/mail_tracking/i18n/mk.po index ca33eddf..55126af0 100644 --- a/mail_tracking/i18n/mk.po +++ b/mail_tracking/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/mn.po b/mail_tracking/i18n/mn.po index e88444fe..5c847a4b 100644 --- a/mail_tracking/i18n/mn.po +++ b/mail_tracking/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/nb.po b/mail_tracking/i18n/nb.po index 129c3dcd..64c82898 100644 --- a/mail_tracking/i18n/nb.po +++ b/mail_tracking/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "Melding" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/nb_NO.po b/mail_tracking/i18n/nb_NO.po index 4a1e09f4..1c296f82 100644 --- a/mail_tracking/i18n/nb_NO.po +++ b/mail_tracking/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # Imre Kristoffer Eilertsen , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +140,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +301,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +328,7 @@ msgstr "Partner" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +419,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/nl.po b/mail_tracking/i18n/nl.po index d6a12aac..8dd4baca 100644 --- a/mail_tracking/i18n/nl.po +++ b/mail_tracking/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "Bericht" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/nl_BE.po b/mail_tracking/i18n/nl_BE.po index 45f7f3b0..dca746be 100644 --- a/mail_tracking/i18n/nl_BE.po +++ b/mail_tracking/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/nl_NL.po b/mail_tracking/i18n/nl_NL.po index 320ce5a2..1163d4d1 100644 --- a/mail_tracking/i18n/nl_NL.po +++ b/mail_tracking/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 # Peter Hageman , 2017 @@ -12,25 +12,36 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -271,7 +282,7 @@ msgstr "Bericht" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -429,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/pl.po b/mail_tracking/i18n/pl.po index 6fd460ff..25d4f4dc 100644 --- a/mail_tracking/i18n/pl.po +++ b/mail_tracking/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,36 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/pt.po b/mail_tracking/i18n/pt.po index cd72554f..7fac3f10 100644 --- a/mail_tracking/i18n/pt.po +++ b/mail_tracking/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,34 +13,55 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:17+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" -" * O estado 'Erro' indica que houve um erro na tentativa de envio da mensagem, p. ex., 'Destinatário(s) inválido(s)'\n" -" * O estado 'Enviado' indica que a mensagem foi enviado com sucesso através do servidor de saída (SMTP).\n" -" * O estado 'Entregue' indica que a mensagem foi entregue com sucesso ao servidor Mail Exchange (MX) do destinatário.\n" -" * O estado 'Aberto' indica que a mensagem foi aberta ou clicada pelo destinatário.\n" -" * O estado 'Rejeitada' indica que o endereço de email do destinatário foi adicionada à blacklist pelo servidor de saída (SMTP). É recomendado que elimine estes endereços de email.\n" -" * O estado 'Spam' indica que o servidor de saída (SMTP) considerou esta mensagem como spam.\n" -" * O estado 'Unsubscribed' indica que o destinatário solicitou a remoção da subscrição desta mensagem.\n" -" * O estado 'Devolvido' indica que a mensagem foi enviada de volta pelo servidor Mail Exchange (MX) do destinatário.\n" -" * O estado 'Devolvida Tempor.' indica que a mensagem foi devolvida por razões de caráter temporário pelo servidor Mail Exchange (MX) do destinatário.\n" +" * O estado 'Erro' indica que houve um erro na tentativa de envio da " +"mensagem, p. ex., 'Destinatário(s) inválido(s)'\n" +" * O estado 'Enviado' indica que a mensagem foi enviado com sucesso através " +"do servidor de saída (SMTP).\n" +" * O estado 'Entregue' indica que a mensagem foi entregue com sucesso ao " +"servidor Mail Exchange (MX) do destinatário.\n" +" * O estado 'Aberto' indica que a mensagem foi aberta ou clicada pelo " +"destinatário.\n" +" * O estado 'Rejeitada' indica que o endereço de email do destinatário foi " +"adicionada à blacklist pelo servidor de saída (SMTP). É recomendado que " +"elimine estes endereços de email.\n" +" * O estado 'Spam' indica que o servidor de saída (SMTP) considerou esta " +"mensagem como spam.\n" +" * O estado 'Unsubscribed' indica que o destinatário solicitou a remoção da " +"subscrição desta mensagem.\n" +" * O estado 'Devolvido' indica que a mensagem foi enviada de volta pelo " +"servidor Mail Exchange (MX) do destinatário.\n" +" * O estado 'Devolvida Tempor.' indica que a mensagem foi devolvida por " +"razões de caráter temporário pelo servidor Mail Exchange (MX) do " +"destinatário.\n" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search @@ -280,7 +301,7 @@ msgstr "Mensagem" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "Rastreamento de mensagens" @@ -438,7 +459,7 @@ msgstr "Eventos de rastreamento" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "Parceiro de rastreamento" diff --git a/mail_tracking/i18n/pt_BR.po b/mail_tracking/i18n/pt_BR.po index c8b4feaa..426f8775 100644 --- a/mail_tracking/i18n/pt_BR.po +++ b/mail_tracking/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "Mensagem" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/pt_PT.po b/mail_tracking/i18n/pt_PT.po index 246b9003..bdc9a425 100644 --- a/mail_tracking/i18n/pt_PT.po +++ b/mail_tracking/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/ro.po b/mail_tracking/i18n/ro.po index e9c7a0f8..c9608d46 100644 --- a/mail_tracking/i18n/ro.po +++ b/mail_tracking/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 # Dorin Hongu , 2016 @@ -14,24 +14,35 @@ msgstr "" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: Fekete Mihai , 2016\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -131,8 +142,16 @@ msgstr "" msgid "Email" msgstr "Email" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -264,7 +283,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -284,11 +303,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -307,6 +330,7 @@ msgstr "Partener" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -319,6 +343,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -396,7 +421,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -404,6 +428,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -416,7 +441,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/ru.po b/mail_tracking/i18n/ru.po index 2290e715..19273b8b 100644 --- a/mail_tracking/i18n/ru.po +++ b/mail_tracking/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,36 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/sk.po b/mail_tracking/i18n/sk.po index 046b7b44..502921cb 100644 --- a/mail_tracking/i18n/sk.po +++ b/mail_tracking/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/sl.po b/mail_tracking/i18n/sl.po index 880f4300..5f3e49ed 100644 --- a/mail_tracking/i18n/sl.po +++ b/mail_tracking/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "Sporočilo" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "Sledenje sporočila" @@ -428,7 +439,7 @@ msgstr "Sledilni dogodki" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/sr.po b/mail_tracking/i18n/sr.po index 3874aa66..ec102b7c 100644 --- a/mail_tracking/i18n/sr.po +++ b/mail_tracking/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: 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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +140,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +301,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +328,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +419,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/sr@latin.po b/mail_tracking/i18n/sr@latin.po index a4bb559e..2d390645 100644 --- a/mail_tracking/i18n/sr@latin.po +++ b/mail_tracking/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,37 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\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" +"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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +282,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +440,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/sv.po b/mail_tracking/i18n/sv.po index 8471c6fe..c5aa4d75 100644 --- a/mail_tracking/i18n/sv.po +++ b/mail_tracking/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/th.po b/mail_tracking/i18n/th.po index 1a8b641a..4d70fe91 100644 --- a/mail_tracking/i18n/th.po +++ b/mail_tracking/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/tr.po b/mail_tracking/i18n/tr.po index cdc67031..69328c7c 100644 --- a/mail_tracking/i18n/tr.po +++ b/mail_tracking/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "İleti" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/tr_TR.po b/mail_tracking/i18n/tr_TR.po index cb103a29..2f539c92 100644 --- a/mail_tracking/i18n/tr_TR.po +++ b/mail_tracking/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "İleti" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/uk.po b/mail_tracking/i18n/uk.po index 0ba82f93..b8fddc7d 100644 --- a/mail_tracking/i18n/uk.po +++ b/mail_tracking/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,35 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/vi.po b/mail_tracking/i18n/vi.po index 386b6c40..577dd804 100644 --- a/mail_tracking/i18n/vi.po +++ b/mail_tracking/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,24 +12,34 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +280,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +438,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/vi_VN.po b/mail_tracking/i18n/vi_VN.po index 67327f0e..ea543467 100644 --- a/mail_tracking/i18n/vi_VN.po +++ b/mail_tracking/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2016-09-17 02:47+0000\n" "PO-Revision-Date: 2016-09-17 02:47+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -129,8 +140,16 @@ msgstr "" msgid "Email" msgstr "" +#. module: mail_tracking +#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_bounced +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking.view_res_partner_filter +msgid "Email bounced" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_email_score +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_email_score msgid "Email score" msgstr "" @@ -262,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:53 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -282,11 +301,15 @@ msgstr "" #. module: mail_tracking #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search -#: selection:mail.tracking.email,state:0 #: selection:mail.tracking.event,event_type:0 msgid "Open" msgstr "" +#. module: mail_tracking +#: selection:mail.tracking.email,state:0 +msgid "Opened" +msgstr "" + #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_os_family msgid "Operating system family" @@ -305,6 +328,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient +#: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_search #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_email_tree #: model:ir.ui.view,arch_db:mail_tracking.view_mail_tracking_event_search msgid "Recipient" @@ -317,6 +341,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_email_recipient_address +#: model:ir.model.fields,field_description:mail_tracking.field_mail_tracking_event_recipient_address msgid "Recipient email address" msgstr "" @@ -394,7 +419,6 @@ msgid "To:" msgstr "" #. module: mail_tracking -#: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_email_ids #: model:ir.ui.menu,name:mail_tracking.menu_mail_tracking_email #: model:ir.ui.view,arch_db:mail_tracking.view_partner_form msgid "Tracking emails" @@ -402,6 +426,7 @@ msgstr "" #. module: mail_tracking #: model:ir.model.fields,field_description:mail_tracking.field_res_partner_tracking_emails_count +#: model:ir.model.fields,field_description:mail_tracking.field_res_users_tracking_emails_count msgid "Tracking emails count" msgstr "" @@ -414,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:33 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/zh_CN.po b/mail_tracking/i18n/zh_CN.po index 1625f752..cf426926 100644 --- a/mail_tracking/i18n/zh_CN.po +++ b/mail_tracking/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" diff --git a/mail_tracking/i18n/zh_TW.po b/mail_tracking/i18n/zh_TW.po index 536cff23..c475c19c 100644 --- a/mail_tracking/i18n/zh_TW.po +++ b/mail_tracking/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,25 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mail_tracking #: model:ir.model.fields,help:mail_tracking.field_mail_tracking_email_state msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Opened' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +" * The 'Error' status indicates that there was an error when trying to sent " +"the email, for example, 'No valid recipient'\n" +" * The 'Sent' status indicates that message was succesfully sent via " +"outgoing email server (SMTP).\n" +" * The 'Delivered' status indicates that message was succesfully delivered " +"to recipient Mail Exchange (MX) server.\n" +" * The 'Opened' status indicates that message was opened or clicked by " +"recipient.\n" +" * The 'Rejected' status indicates that recipient email address is " +"blacklisted by outgoing email server (SMTP). It is recomended to delete this " +"email address.\n" +" * The 'Spam' status indicates that outgoing email server (SMTP) consider " +"this message as spam.\n" +" * The 'Unsubscribed' status indicates that recipient has requested to be " +"unsubscribed from this message.\n" +" * The 'Bounced' status indicates that message was bounced by recipient Mail " +"Exchange (MX) server.\n" +" * The 'Soft bounced' status indicates that message was soft bounced by " +"recipient Mail Exchange (MX) server.\n" msgstr "" #. module: mail_tracking @@ -270,7 +281,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:52 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:48 #, python-format msgid "Message tracking" msgstr "" @@ -428,7 +439,7 @@ msgstr "" #. module: mail_tracking #. openerp-web -#: code:addons/mail_tracking/static/src/js/mail_tracking.js:32 +#: code:addons/mail_tracking/static/src/js/mail_tracking.js:28 #, python-format msgid "Tracking partner" msgstr "" From b2b1bf470cb0f7c5bddbc44c12ba61202d8531f5 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:54 +0000 Subject: [PATCH 38/86] [UPD] Update mail_tracking_mailgun.pot --- mail_tracking_mailgun/i18n/am.po | 34 ++-- mail_tracking_mailgun/i18n/ar.po | 37 +++-- mail_tracking_mailgun/i18n/bg.po | 34 ++-- mail_tracking_mailgun/i18n/bs.po | 37 +++-- mail_tracking_mailgun/i18n/ca.po | 34 ++-- mail_tracking_mailgun/i18n/cs.po | 34 ++-- mail_tracking_mailgun/i18n/da.po | 34 ++-- mail_tracking_mailgun/i18n/de.po | 34 ++-- mail_tracking_mailgun/i18n/el_GR.po | 37 +++-- mail_tracking_mailgun/i18n/en_GB.po | 37 +++-- mail_tracking_mailgun/i18n/es.po | 4 +- mail_tracking_mailgun/i18n/es_CR.po | 37 +++-- mail_tracking_mailgun/i18n/es_EC.po | 37 +++-- mail_tracking_mailgun/i18n/es_MX.po | 37 +++-- mail_tracking_mailgun/i18n/es_VE.po | 37 +++-- mail_tracking_mailgun/i18n/et.po | 34 ++-- mail_tracking_mailgun/i18n/eu.po | 34 ++-- mail_tracking_mailgun/i18n/fi.po | 34 ++-- mail_tracking_mailgun/i18n/fr.po | 34 ++-- mail_tracking_mailgun/i18n/fr_CA.po | 37 +++-- mail_tracking_mailgun/i18n/fr_CH.po | 37 +++-- mail_tracking_mailgun/i18n/gl.po | 34 ++-- mail_tracking_mailgun/i18n/hr.po | 37 +++-- mail_tracking_mailgun/i18n/hr_HR.po | 40 +++-- mail_tracking_mailgun/i18n/hu.po | 34 ++-- mail_tracking_mailgun/i18n/it.po | 34 ++-- mail_tracking_mailgun/i18n/ja.po | 34 ++-- mail_tracking_mailgun/i18n/lt.po | 37 +++-- mail_tracking_mailgun/i18n/lv.po | 37 +++-- .../i18n/mail_tracking_mailgun.pot | 150 ++++++++++++++++++ mail_tracking_mailgun/i18n/mk.po | 34 ++-- mail_tracking_mailgun/i18n/mn.po | 34 ++-- mail_tracking_mailgun/i18n/nb.po | 37 +++-- mail_tracking_mailgun/i18n/nb_NO.po | 37 +++-- mail_tracking_mailgun/i18n/nl.po | 34 ++-- mail_tracking_mailgun/i18n/nl_BE.po | 37 +++-- mail_tracking_mailgun/i18n/nl_NL.po | 37 +++-- mail_tracking_mailgun/i18n/pl.po | 38 +++-- mail_tracking_mailgun/i18n/pt.po | 4 +- mail_tracking_mailgun/i18n/pt_BR.po | 37 +++-- mail_tracking_mailgun/i18n/pt_PT.po | 37 +++-- mail_tracking_mailgun/i18n/ro.po | 37 +++-- mail_tracking_mailgun/i18n/ru.po | 38 +++-- mail_tracking_mailgun/i18n/sk.po | 34 ++-- mail_tracking_mailgun/i18n/sl.po | 37 +++-- mail_tracking_mailgun/i18n/sr@latin.po | 40 +++-- mail_tracking_mailgun/i18n/sv.po | 34 ++-- mail_tracking_mailgun/i18n/th.po | 34 ++-- mail_tracking_mailgun/i18n/tr.po | 34 ++-- mail_tracking_mailgun/i18n/tr_TR.po | 37 +++-- mail_tracking_mailgun/i18n/vi.po | 34 ++-- mail_tracking_mailgun/i18n/zh_CN.po | 37 +++-- mail_tracking_mailgun/i18n/zh_TW.po | 37 +++-- 53 files changed, 1366 insertions(+), 584 deletions(-) create mode 100644 mail_tracking_mailgun/i18n/mail_tracking_mailgun.pot diff --git a/mail_tracking_mailgun/i18n/am.po b/mail_tracking_mailgun/i18n/am.po index 72846343..df6b4043 100644 --- a/mail_tracking_mailgun/i18n/am.po +++ b/mail_tracking_mailgun/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/ar.po b/mail_tracking_mailgun/i18n/ar.po index 2b69e995..c82f74b1 100644 --- a/mail_tracking_mailgun/i18n/ar.po +++ b/mail_tracking_mailgun/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/bg.po b/mail_tracking_mailgun/i18n/bg.po index d56217d3..f4457ea0 100644 --- a/mail_tracking_mailgun/i18n/bg.po +++ b/mail_tracking_mailgun/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/bs.po b/mail_tracking_mailgun/i18n/bs.po index fcbda5a2..40a3aef9 100644 --- a/mail_tracking_mailgun/i18n/bs.po +++ b/mail_tracking_mailgun/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/ca.po b/mail_tracking_mailgun/i18n/ca.po index 23c4cd29..8066fe8e 100644 --- a/mail_tracking_mailgun/i18n/ca.po +++ b/mail_tracking_mailgun/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/cs.po b/mail_tracking_mailgun/i18n/cs.po index 42244d96..dfd11fe5 100644 --- a/mail_tracking_mailgun/i18n/cs.po +++ b/mail_tracking_mailgun/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/da.po b/mail_tracking_mailgun/i18n/da.po index 1af35a54..b3ac4c5a 100644 --- a/mail_tracking_mailgun/i18n/da.po +++ b/mail_tracking_mailgun/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/de.po b/mail_tracking_mailgun/i18n/de.po index 67c9d5ae..44e075c6 100644 --- a/mail_tracking_mailgun/i18n/de.po +++ b/mail_tracking_mailgun/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/el_GR.po b/mail_tracking_mailgun/i18n/el_GR.po index 9ef01cc3..931a0977 100644 --- a/mail_tracking_mailgun/i18n/el_GR.po +++ b/mail_tracking_mailgun/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/en_GB.po b/mail_tracking_mailgun/i18n/en_GB.po index 4baf04a5..792b7d3b 100644 --- a/mail_tracking_mailgun/i18n/en_GB.po +++ b/mail_tracking_mailgun/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/es.po b/mail_tracking_mailgun/i18n/es.po index 4ada4137..831ef404 100644 --- a/mail_tracking_mailgun/i18n/es.po +++ b/mail_tracking_mailgun/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_tracking_mailgun diff --git a/mail_tracking_mailgun/i18n/es_CR.po b/mail_tracking_mailgun/i18n/es_CR.po index a5379af4..b984534d 100644 --- a/mail_tracking_mailgun/i18n/es_CR.po +++ b/mail_tracking_mailgun/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/es_EC.po b/mail_tracking_mailgun/i18n/es_EC.po index 9d01f42c..e9d111d8 100644 --- a/mail_tracking_mailgun/i18n/es_EC.po +++ b/mail_tracking_mailgun/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/es_MX.po b/mail_tracking_mailgun/i18n/es_MX.po index 33eb8238..b9afecee 100644 --- a/mail_tracking_mailgun/i18n/es_MX.po +++ b/mail_tracking_mailgun/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/es_VE.po b/mail_tracking_mailgun/i18n/es_VE.po index 94f51f0d..de51fa71 100644 --- a/mail_tracking_mailgun/i18n/es_VE.po +++ b/mail_tracking_mailgun/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/et.po b/mail_tracking_mailgun/i18n/et.po index b1915556..b312353e 100644 --- a/mail_tracking_mailgun/i18n/et.po +++ b/mail_tracking_mailgun/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/eu.po b/mail_tracking_mailgun/i18n/eu.po index aedb0378..510c22fd 100644 --- a/mail_tracking_mailgun/i18n/eu.po +++ b/mail_tracking_mailgun/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/fi.po b/mail_tracking_mailgun/i18n/fi.po index e47c70ea..b94f48be 100644 --- a/mail_tracking_mailgun/i18n/fi.po +++ b/mail_tracking_mailgun/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/fr.po b/mail_tracking_mailgun/i18n/fr.po index 25b00839..8d018439 100644 --- a/mail_tracking_mailgun/i18n/fr.po +++ b/mail_tracking_mailgun/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/fr_CA.po b/mail_tracking_mailgun/i18n/fr_CA.po index 9180dbaa..92d510be 100644 --- a/mail_tracking_mailgun/i18n/fr_CA.po +++ b/mail_tracking_mailgun/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/fr_CH.po b/mail_tracking_mailgun/i18n/fr_CH.po index 63693c8c..6c4f3b8a 100644 --- a/mail_tracking_mailgun/i18n/fr_CH.po +++ b/mail_tracking_mailgun/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/gl.po b/mail_tracking_mailgun/i18n/gl.po index ea1353f7..4a3c6940 100644 --- a/mail_tracking_mailgun/i18n/gl.po +++ b/mail_tracking_mailgun/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/hr.po b/mail_tracking_mailgun/i18n/hr.po index c42ffc4b..158f27e4 100644 --- a/mail_tracking_mailgun/i18n/hr.po +++ b/mail_tracking_mailgun/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "ir.mail_server" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/hr_HR.po b/mail_tracking_mailgun/i18n/hr_HR.po index f2758e46..659640d4 100644 --- a/mail_tracking_mailgun/i18n/hr_HR.po +++ b/mail_tracking_mailgun/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +29,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +37,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +45,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +61,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +76,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +103,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +129,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +157,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/hu.po b/mail_tracking_mailgun/i18n/hu.po index ce553e96..e209b96f 100644 --- a/mail_tracking_mailgun/i18n/hu.po +++ b/mail_tracking_mailgun/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/it.po b/mail_tracking_mailgun/i18n/it.po index ed82c2d1..78a199ce 100644 --- a/mail_tracking_mailgun/i18n/it.po +++ b/mail_tracking_mailgun/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # Marius Marolla , 2017 # OCA Transbot , 2017 @@ -13,14 +13,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -28,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -36,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -44,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -60,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -75,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -102,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -128,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -150,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "ir.mail_server" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/ja.po b/mail_tracking_mailgun/i18n/ja.po index 49d4b628..9e269cb5 100644 --- a/mail_tracking_mailgun/i18n/ja.po +++ b/mail_tracking_mailgun/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/lt.po b/mail_tracking_mailgun/i18n/lt.po index a5fbfba8..7aa42ba1 100644 --- a/mail_tracking_mailgun/i18n/lt.po +++ b/mail_tracking_mailgun/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/lv.po b/mail_tracking_mailgun/i18n/lv.po index cbff4e1a..92dbbdc3 100644 --- a/mail_tracking_mailgun/i18n/lv.po +++ b/mail_tracking_mailgun/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/mail_tracking_mailgun.pot b/mail_tracking_mailgun/i18n/mail_tracking_mailgun.pot new file mode 100644 index 00000000..729032b4 --- /dev/null +++ b/mail_tracking_mailgun/i18n/mail_tracking_mailgun.pot @@ -0,0 +1,150 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_tracking_mailgun +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 +#, python-format +msgid "%s couldn't be verified. Either the request couln't be completed or the mailbox provider doesn't support email verification" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 +#, python-format +msgid "%s failed the mailbox verification. Please check it in order to avoid sending issues" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 +#, python-format +msgid "%s is not a valid email address. Please check it in order to avoid sending issues" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 +#, python-format +msgid "A Mailgun domain value is needed!" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun +msgid "Check Mailgun" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun +msgid "Check email validity" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 +#, python-format +msgid "Couldn't retrieve Mailgun information" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:30 +#, python-format +msgid "Email has been bounced: %s\n" +"Reason: %s\n" +"Event: %s" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 +#, python-format +msgid "Error %s trying to check mailof connection" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 +#, python-format +msgid "Event information not longer stored" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.model,name:mail_tracking_mailgun.model_mail_tracking_email +msgid "MailTracking email" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.model,name:mail_tracking_mailgun.model_mail_tracking_event +msgid "MailTracking event" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun +msgid "Mailgun" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 +#, python-format +msgid "Mailgun Error. Mailbox verification value wasn't returned" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.model.fields,field_description:mail_tracking_mailgun.field_mail_tracking_event_mailgun_id +msgid "Mailgun Event ID" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.model,name:mail_tracking_mailgun.model_res_partner +msgid "Partner" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.mailgun_manual_check +msgid "Re-sync Mailgun" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun +msgid "Set Bounced" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 +#, python-format +msgid "There is no Mailgun API key!" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun +msgid "Unset Bounced" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:46 +#, python-format +msgid "You need to configure mailgun.validation_key in order to be able to check mails validity" +msgstr "" + +#. module: mail_tracking_mailgun +#: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server +msgid "ir.mail_server" +msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" + diff --git a/mail_tracking_mailgun/i18n/mk.po b/mail_tracking_mailgun/i18n/mk.po index 710600d4..0c1e40ab 100644 --- a/mail_tracking_mailgun/i18n/mk.po +++ b/mail_tracking_mailgun/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/mn.po b/mail_tracking_mailgun/i18n/mn.po index c72c9fc4..5f25b760 100644 --- a/mail_tracking_mailgun/i18n/mn.po +++ b/mail_tracking_mailgun/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/nb.po b/mail_tracking_mailgun/i18n/nb.po index 0114be69..e939ab35 100644 --- a/mail_tracking_mailgun/i18n/nb.po +++ b/mail_tracking_mailgun/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/nb_NO.po b/mail_tracking_mailgun/i18n/nb_NO.po index ce1635b5..cc408073 100644 --- a/mail_tracking_mailgun/i18n/nb_NO.po +++ b/mail_tracking_mailgun/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/nl.po b/mail_tracking_mailgun/i18n/nl.po index f595edba..494fff31 100644 --- a/mail_tracking_mailgun/i18n/nl.po +++ b/mail_tracking_mailgun/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/nl_BE.po b/mail_tracking_mailgun/i18n/nl_BE.po index eb0226ab..83bf318f 100644 --- a/mail_tracking_mailgun/i18n/nl_BE.po +++ b/mail_tracking_mailgun/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/nl_NL.po b/mail_tracking_mailgun/i18n/nl_NL.po index 0cb36c1c..d520ae34 100644 --- a/mail_tracking_mailgun/i18n/nl_NL.po +++ b/mail_tracking_mailgun/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "ir.mail_server" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/pl.po b/mail_tracking_mailgun/i18n/pl.po index bb256c52..86bb437d 100644 --- a/mail_tracking_mailgun/i18n/pl.po +++ b/mail_tracking_mailgun/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,16 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +29,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +37,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +45,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +61,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +76,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +103,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +129,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +157,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/pt.po b/mail_tracking_mailgun/i18n/pt.po index 733a08b8..dc3e5458 100644 --- a/mail_tracking_mailgun/i18n/pt.po +++ b/mail_tracking_mailgun/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_tracking_mailgun diff --git a/mail_tracking_mailgun/i18n/pt_BR.po b/mail_tracking_mailgun/i18n/pt_BR.po index 98239fd0..1c6d1c99 100644 --- a/mail_tracking_mailgun/i18n/pt_BR.po +++ b/mail_tracking_mailgun/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/pt_PT.po b/mail_tracking_mailgun/i18n/pt_PT.po index 5dfa7004..9298e884 100644 --- a/mail_tracking_mailgun/i18n/pt_PT.po +++ b/mail_tracking_mailgun/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/ro.po b/mail_tracking_mailgun/i18n/ro.po index 549447ce..f63701a3 100644 --- a/mail_tracking_mailgun/i18n/ro.po +++ b/mail_tracking_mailgun/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/ru.po b/mail_tracking_mailgun/i18n/ru.po index 7f4e7612..283e8e35 100644 --- a/mail_tracking_mailgun/i18n/ru.po +++ b/mail_tracking_mailgun/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,16 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +29,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +37,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +45,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +61,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +76,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +103,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +129,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +157,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/sk.po b/mail_tracking_mailgun/i18n/sk.po index 47a8f406..f9ba1c02 100644 --- a/mail_tracking_mailgun/i18n/sk.po +++ b/mail_tracking_mailgun/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/sl.po b/mail_tracking_mailgun/i18n/sl.po index d68f9804..c6814118 100644 --- a/mail_tracking_mailgun/i18n/sl.po +++ b/mail_tracking_mailgun/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,15 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/sr@latin.po b/mail_tracking_mailgun/i18n/sr@latin.po index 1bb6f7dc..13234466 100644 --- a/mail_tracking_mailgun/i18n/sr@latin.po +++ b/mail_tracking_mailgun/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,17 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +29,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +37,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +45,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +61,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +76,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +103,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +129,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +157,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/sv.po b/mail_tracking_mailgun/i18n/sv.po index dcdb87dd..82e7c09b 100644 --- a/mail_tracking_mailgun/i18n/sv.po +++ b/mail_tracking_mailgun/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/th.po b/mail_tracking_mailgun/i18n/th.po index 11efd836..4c92a497 100644 --- a/mail_tracking_mailgun/i18n/th.po +++ b/mail_tracking_mailgun/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/tr.po b/mail_tracking_mailgun/i18n/tr.po index c9aff7fb..707b0192 100644 --- a/mail_tracking_mailgun/i18n/tr.po +++ b/mail_tracking_mailgun/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/tr_TR.po b/mail_tracking_mailgun/i18n/tr_TR.po index 7fe64925..95ca1185 100644 --- a/mail_tracking_mailgun/i18n/tr_TR.po +++ b/mail_tracking_mailgun/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/vi.po b/mail_tracking_mailgun/i18n/vi.po index 2247cc4c..5e19fc10 100644 --- a/mail_tracking_mailgun/i18n/vi.po +++ b/mail_tracking_mailgun/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,14 +12,14 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +27,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +35,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +43,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +59,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +74,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +101,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +127,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +155,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/zh_CN.po b/mail_tracking_mailgun/i18n/zh_CN.po index 2e098250..1e9ee500 100644 --- a/mail_tracking_mailgun/i18n/zh_CN.po +++ b/mail_tracking_mailgun/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" diff --git a/mail_tracking_mailgun/i18n/zh_TW.po b/mail_tracking_mailgun/i18n/zh_TW.po index ce9a7eda..3245a1e3 100644 --- a/mail_tracking_mailgun/i18n/zh_TW.po +++ b/mail_tracking_mailgun/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mailgun -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,15 +11,16 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:82 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:89 #, python-format msgid "" "%s couldn't be verified. Either the request couln't be completed or the " @@ -27,7 +28,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:76 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:79 #, python-format msgid "" "%s failed the mailbox verification. Please check it in order to avoid " @@ -35,7 +36,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:69 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:70 #, python-format msgid "" "%s is not a valid email address. Please check it in order to avoid sending " @@ -43,7 +44,7 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:75 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:76 #, python-format msgid "A Mailgun domain value is needed!" msgstr "" @@ -59,7 +60,7 @@ msgid "Check email validity" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:236 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:239 #, python-format msgid "Couldn't retrieve Mailgun information" msgstr "" @@ -74,13 +75,13 @@ msgid "" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:56 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:57 #, python-format msgid "Error %s trying to check mailof connection" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:240 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:243 #, python-format msgid "Event information not longer stored" msgstr "" @@ -101,7 +102,7 @@ msgid "Mailgun" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/res_partner.py:62 +#: code:addons/mail_tracking_mailgun/models/res_partner.py:64 #, python-format msgid "Mailgun Error. Mailbox verification value wasn't returned" msgstr "" @@ -127,11 +128,17 @@ msgid "Set Bounced" msgstr "" #. module: mail_tracking_mailgun -#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:70 +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:71 #, python-format msgid "There is no Mailgun API key!" msgstr "" +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/mail_tracking_email.py:226 +#, python-format +msgid "There is no tracked message!" +msgstr "" + #. module: mail_tracking_mailgun #: model:ir.ui.view,arch_db:mail_tracking_mailgun.view_partner_form_mailgun msgid "Unset Bounced" @@ -149,3 +156,9 @@ msgstr "" #: model:ir.model,name:mail_tracking_mailgun.model_ir_mail_server msgid "ir.mail_server" msgstr "" + +#. module: mail_tracking_mailgun +#: code:addons/mail_tracking_mailgun/models/res_partner.py:33 +#, python-format +msgid "unknown" +msgstr "" From 3d6f68892ad7ac4c6978aa4d5343afaebaa9917c Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:54 +0000 Subject: [PATCH 39/86] [UPD] Update mail_tracking_mass_mailing.pot --- mail_tracking_mass_mailing/i18n/ca.po | 4 +- mail_tracking_mass_mailing/i18n/da.po | 4 +- mail_tracking_mass_mailing/i18n/de.po | 4 +- mail_tracking_mass_mailing/i18n/el_GR.po | 7 +- mail_tracking_mass_mailing/i18n/es.po | 4 +- mail_tracking_mass_mailing/i18n/es_CO.po | 94 +++++++-------- mail_tracking_mass_mailing/i18n/eu.po | 4 +- mail_tracking_mass_mailing/i18n/fi.po | 4 +- mail_tracking_mass_mailing/i18n/fr.po | 4 +- mail_tracking_mass_mailing/i18n/gl.po | 4 +- mail_tracking_mass_mailing/i18n/hr.po | 10 +- mail_tracking_mass_mailing/i18n/hr_HR.po | 10 +- mail_tracking_mass_mailing/i18n/it.po | 4 +- .../i18n/mail_tracking_mass_mailing.pot | 114 ++++++++++++++++++ mail_tracking_mass_mailing/i18n/nb_NO.po | 7 +- mail_tracking_mass_mailing/i18n/nl.po | 4 +- mail_tracking_mass_mailing/i18n/nl_NL.po | 7 +- mail_tracking_mass_mailing/i18n/pl.po | 8 +- mail_tracking_mass_mailing/i18n/pt.po | 4 +- mail_tracking_mass_mailing/i18n/pt_BR.po | 7 +- mail_tracking_mass_mailing/i18n/ro.po | 7 +- mail_tracking_mass_mailing/i18n/ru.po | 8 +- mail_tracking_mass_mailing/i18n/sl.po | 7 +- mail_tracking_mass_mailing/i18n/tr.po | 4 +- 24 files changed, 228 insertions(+), 106 deletions(-) create mode 100644 mail_tracking_mass_mailing/i18n/mail_tracking_mass_mailing.pot diff --git a/mail_tracking_mass_mailing/i18n/ca.po b/mail_tracking_mass_mailing/i18n/ca.po index 1178cc48..658678e1 100644 --- a/mail_tracking_mass_mailing/i18n/ca.po +++ b/mail_tracking_mass_mailing/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Carles Antoli , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: Carles Antoli , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/da.po b/mail_tracking_mass_mailing/i18n/da.po index 28167af2..2bfb4081 100644 --- a/mail_tracking_mass_mailing/i18n/da.po +++ b/mail_tracking_mass_mailing/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/de.po b/mail_tracking_mass_mailing/i18n/de.po index 05ce44da..ff16dc9c 100644 --- a/mail_tracking_mass_mailing/i18n/de.po +++ b/mail_tracking_mass_mailing/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Rudolf Schnapka , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-03-28 08:19+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/el_GR.po b/mail_tracking_mass_mailing/i18n/el_GR.po index af836e1f..4fc55eb3 100644 --- a/mail_tracking_mass_mailing/i18n/el_GR.po +++ b/mail_tracking_mass_mailing/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-18 04:04+0000\n" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/es.po b/mail_tracking_mass_mailing/i18n/es.po index 81faf500..98303516 100644 --- a/mail_tracking_mass_mailing/i18n/es.po +++ b/mail_tracking_mass_mailing/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # enjolras , 2017 # OCA Transbot , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/es_CO.po b/mail_tracking_mass_mailing/i18n/es_CO.po index beb6a048..a0491655 100644 --- a/mail_tracking_mass_mailing/i18n/es_CO.po +++ b/mail_tracking_mass_mailing/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # John Toro , 2016 msgid "" @@ -11,62 +11,71 @@ msgstr "" "POT-Creation-Date: 2016-08-17 02:42+0000\n" "PO-Revision-Date: 2016-08-17 02:42+0000\n" "Last-Translator: John Toro , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mass_mailing -#: help:mail.mail.statistics,tracking_state:0 -msgid "" -" * The 'Error' status indicates that there was an error when trying to sent the email, for example, 'No valid recipient'\n" -" * The 'Sent' status indicates that message was succesfully sent via outgoing email server (SMTP).\n" -" * The 'Delivered' status indicates that message was succesfully delivered to recipient Mail Exchange (MX) server.\n" -" * The 'Open' status indicates that message was opened or clicked by recipient.\n" -" * The 'Rejected' status indicates that recipient email address is blacklisted by outgoing email server (SMTP). It is recomended to delete this email address.\n" -" * The 'Spam' status indicates that outgoing email server (SMTP) consider this message as spam.\n" -" * The 'Unsubscribed' status indicates that recipient has requested to be unsubscribed from this message.\n" -" * The 'Bounced' status indicates that message was bounced by recipient Mail Exchange (MX) server.\n" -" * The 'Soft bounced' status indicates that message was soft bounced by recipient Mail Exchange (MX) server.\n" +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "Country" msgstr "" #. module: mail_tracking_mass_mailing -#: view:mail.mail.statistics:mail_tracking_mass_mailing.view_mail_mail_statistics_form -msgid "Country" +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail_statistics +msgid "Email Statistics" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.mail,path:0 -msgid "Discussion Path" +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mass_mailing_contact_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mass_mailing_contact_search +msgid "Email bounced" msgstr "" #. module: mail_tracking_mass_mailing -#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail_statistics -msgid "Email Statistics" +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mass_mailing_contact_email_score +msgid "Email score" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.mass_mailing.contact,email_score:0 -msgid "Email score" +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_email_menu +msgid "Emails" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_event_menu +msgid "Events" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.tracking.email,mail_id_int:0 +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mail_id_int msgid "Mail ID" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.tracking.email,mail_stats_id:0 +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mail_stats_id msgid "Mail statistics" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.mail.statistics,mail_tracking_id:0 +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mail_statistics_mail_tracking_id +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_menu msgid "Mail tracking" msgstr "" +#. module: mail_tracking_mass_mailing +#: model:ir.actions.act_window,name:mail_tracking_mass_mailing.action_view_mail_tracking_email +msgid "Mail tracking emails" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.actions.act_window,name:mail_tracking_mass_mailing.action_view_mail_tracking_event +msgid "Mail tracking events" +msgstr "" + #. module: mail_tracking_mass_mailing #: model:ir.model,name:mail_tracking_mass_mailing.model_mail_tracking_email msgid "MailTracking email" @@ -77,49 +86,34 @@ msgstr "" msgid "MailTracking event" msgstr "" -#. module: mail_tracking_mass_mailing -#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mass_mailing -msgid "Mass Mailing" -msgstr "" - #. module: mail_tracking_mass_mailing #: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mass_mailing_contact msgid "Mass Mailing Contact" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.tracking.email,mass_mailing_id:0 +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mass_mailing_id +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_event_mass_mailing_id msgid "Mass mailing" msgstr "" #. module: mail_tracking_mass_mailing -#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail -msgid "Outgoing Mails" -msgstr "Correos Salientes" - -#. module: mail_tracking_mass_mailing -#: field:mail.mail.statistics,tracking_state:0 -msgid "State" +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "OS" msgstr "" #. module: mail_tracking_mass_mailing -#: field:mail.mass_mailing.contact,tracking_email_ids:0 -msgid "Tracking emails" -msgstr "" +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail +msgid "Outgoing Mails" +msgstr "Correos Salientes" #. module: mail_tracking_mass_mailing -#: view:mail.mail.statistics:mail_tracking_mass_mailing.view_mail_mail_statistics_form -#: field:mail.mail.statistics,tracking_event_ids:0 +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mail_statistics_tracking_event_ids +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form msgid "Tracking events" msgstr "" #. module: mail_tracking_mass_mailing -#: help:mail.mail,path:0 -msgid "" -"Used to display messages in a paragraph-based chatter using a unique path;" -msgstr "" - -#. module: mail_tracking_mass_mailing -#: view:mail.mail.statistics:mail_tracking_mass_mailing.view_mail_mail_statistics_form +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form msgid "User agent" msgstr "" diff --git a/mail_tracking_mass_mailing/i18n/eu.po b/mail_tracking_mass_mailing/i18n/eu.po index c1d131b3..68802c71 100644 --- a/mail_tracking_mass_mailing/i18n/eu.po +++ b/mail_tracking_mass_mailing/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # Esther Martín Menéndez , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: Esther Martín Menéndez , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/fi.po b/mail_tracking_mass_mailing/i18n/fi.po index 1b821b2b..90f4be25 100644 --- a/mail_tracking_mass_mailing/i18n/fi.po +++ b/mail_tracking_mass_mailing/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Jarmo Kortetjärvi , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-02 00:20+0000\n" "Last-Translator: Jarmo Kortetjärvi , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/fr.po b/mail_tracking_mass_mailing/i18n/fr.po index 08c70a51..8bd56208 100644 --- a/mail_tracking_mass_mailing/i18n/fr.po +++ b/mail_tracking_mass_mailing/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Quentin THEURET , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 09:45+0000\n" "Last-Translator: Quentin THEURET , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/gl.po b/mail_tracking_mass_mailing/i18n/gl.po index 6e577349..16d28965 100644 --- a/mail_tracking_mass_mailing/i18n/gl.po +++ b/mail_tracking_mass_mailing/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/hr.po b/mail_tracking_mass_mailing/i18n/hr.po index 8336110c..73178394 100644 --- a/mail_tracking_mass_mailing/i18n/hr.po +++ b/mail_tracking_mass_mailing/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Ana-Maria Olujić , 2017 @@ -11,13 +11,15 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-03-18 04:04+0000\n" "PO-Revision-Date: 2017-03-18 04:04+0000\n" -"Last-Translator: Ana-Maria Olujić , 2017\n" +"Last-Translator: Ana-Maria Olujić , " +"2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/hr_HR.po b/mail_tracking_mass_mailing/i18n/hr_HR.po index 97eb4dff..b2bd9b0c 100644 --- a/mail_tracking_mass_mailing/i18n/hr_HR.po +++ b/mail_tracking_mass_mailing/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # Bole , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-03-18 04:04+0000\n" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: Bole , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/it.po b/mail_tracking_mass_mailing/i18n/it.po index d5d0acc1..302fba8e 100644 --- a/mail_tracking_mass_mailing/i18n/it.po +++ b/mail_tracking_mass_mailing/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Marius Marolla , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: Marius Marolla , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/mail_tracking_mass_mailing.pot b/mail_tracking_mass_mailing/i18n/mail_tracking_mass_mailing.pot new file mode 100644 index 00000000..157a9f1f --- /dev/null +++ b/mail_tracking_mass_mailing/i18n/mail_tracking_mass_mailing.pot @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_tracking_mass_mailing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mail_tracking_mass_mailing +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "Country" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail_statistics +msgid "Email Statistics" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mass_mailing_contact_email_bounced +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mass_mailing_contact_search +msgid "Email bounced" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mass_mailing_contact_email_score +msgid "Email score" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_email_menu +msgid "Emails" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_event_menu +msgid "Events" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mail_id_int +msgid "Mail ID" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mail_stats_id +msgid "Mail statistics" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mail_statistics_mail_tracking_id +#: model:ir.ui.menu,name:mail_tracking_mass_mailing.mail_tracking_menu +msgid "Mail tracking" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.actions.act_window,name:mail_tracking_mass_mailing.action_view_mail_tracking_email +msgid "Mail tracking emails" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.actions.act_window,name:mail_tracking_mass_mailing.action_view_mail_tracking_event +msgid "Mail tracking events" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_tracking_email +msgid "MailTracking email" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_tracking_event +msgid "MailTracking event" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mass_mailing_contact +msgid "Mass Mailing Contact" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_email_mass_mailing_id +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_tracking_event_mass_mailing_id +msgid "Mass mailing" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "OS" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model,name:mail_tracking_mass_mailing.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.model.fields,field_description:mail_tracking_mass_mailing.field_mail_mail_statistics_tracking_event_ids +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "Tracking events" +msgstr "" + +#. module: mail_tracking_mass_mailing +#: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form +msgid "User agent" +msgstr "" + diff --git a/mail_tracking_mass_mailing/i18n/nb_NO.po b/mail_tracking_mass_mailing/i18n/nb_NO.po index df845313..bda6c239 100644 --- a/mail_tracking_mass_mailing/i18n/nb_NO.po +++ b/mail_tracking_mass_mailing/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # Imre Kristoffer Eilertsen , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-18 04:04+0000\n" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: Imre Kristoffer Eilertsen , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/nl.po b/mail_tracking_mass_mailing/i18n/nl.po index 573fa785..24e609be 100644 --- a/mail_tracking_mass_mailing/i18n/nl.po +++ b/mail_tracking_mass_mailing/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/nl_NL.po b/mail_tracking_mass_mailing/i18n/nl_NL.po index 6cb96c23..30fe1fba 100644 --- a/mail_tracking_mass_mailing/i18n/nl_NL.po +++ b/mail_tracking_mass_mailing/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-07-22 00:51+0000\n" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/pl.po b/mail_tracking_mass_mailing/i18n/pl.po index c09de578..c3c22789 100644 --- a/mail_tracking_mass_mailing/i18n/pl.po +++ b/mail_tracking_mass_mailing/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/pt.po b/mail_tracking_mass_mailing/i18n/pt.po index 0bf0c073..c9b54076 100644 --- a/mail_tracking_mass_mailing/i18n/pt.po +++ b/mail_tracking_mass_mailing/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:17+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/pt_BR.po b/mail_tracking_mass_mailing/i18n/pt_BR.po index bc510bc4..c8bfb78b 100644 --- a/mail_tracking_mass_mailing/i18n/pt_BR.po +++ b/mail_tracking_mass_mailing/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-03-18 04:04+0000\n" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mail_tracking_mass_mailing diff --git a/mail_tracking_mass_mailing/i18n/ro.po b/mail_tracking_mass_mailing/i18n/ro.po index e7948fd4..5894ee25 100644 --- a/mail_tracking_mass_mailing/i18n/ro.po +++ b/mail_tracking_mass_mailing/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/ru.po b/mail_tracking_mass_mailing/i18n/ru.po index 22e83cf6..cb4633e3 100644 --- a/mail_tracking_mass_mailing/i18n/ru.po +++ b/mail_tracking_mass_mailing/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # Victor Safronovich , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-05-02 00:20+0000\n" "Last-Translator: Victor Safronovich , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/sl.po b/mail_tracking_mass_mailing/i18n/sl.po index 99e49c5e..c56b56ca 100644 --- a/mail_tracking_mass_mailing/i18n/sl.po +++ b/mail_tracking_mass_mailing/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mail_tracking_mass_mailing #: model:ir.ui.view,arch_db:mail_tracking_mass_mailing.view_mail_mail_statistics_form diff --git a/mail_tracking_mass_mailing/i18n/tr.po b/mail_tracking_mass_mailing/i18n/tr.po index 18c642a8..992f134e 100644 --- a/mail_tracking_mass_mailing/i18n/tr.po +++ b/mail_tracking_mass_mailing/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mail_tracking_mass_mailing -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-18 04:04+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mail_tracking_mass_mailing From 707d45302da8715293ae34f2ade8a93854240a2d Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:56 +0000 Subject: [PATCH 40/86] [UPD] Update mass_mailing_custom_unsubscribe.pot --- mass_mailing_custom_unsubscribe/i18n/am.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/ar.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/bg.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/bs.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/ca.po | 75 ++++- mass_mailing_custom_unsubscribe/i18n/cs.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/da.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/de.po | 84 ++++- mass_mailing_custom_unsubscribe/i18n/el_GR.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/en_GB.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es.po | 84 ++++- mass_mailing_custom_unsubscribe/i18n/es_AR.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_CL.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_CO.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_CR.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_DO.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_EC.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_ES.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_MX.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_PE.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_PY.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/es_VE.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/et.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/eu.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/fa.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/fi.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/fr.po | 84 ++++- mass_mailing_custom_unsubscribe/i18n/fr_CA.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/fr_CH.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/fr_FR.po | 166 ++++------ mass_mailing_custom_unsubscribe/i18n/gl.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/gl_ES.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/he.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/hr.po | 78 ++++- mass_mailing_custom_unsubscribe/i18n/hr_HR.po | 80 ++++- mass_mailing_custom_unsubscribe/i18n/hu.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/id.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/it.po | 84 ++++- mass_mailing_custom_unsubscribe/i18n/ja.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/ko.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/lt.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/lt_LT.po | 80 ++++- mass_mailing_custom_unsubscribe/i18n/lv.po | 77 ++++- .../i18n/mass_mailing_custom_unsubscribe.pot | 313 ++++++++++++++++++ mass_mailing_custom_unsubscribe/i18n/mk.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/mn.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/nb.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/nb_NO.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/nl.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/nl_BE.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/nl_NL.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/pl.po | 78 ++++- mass_mailing_custom_unsubscribe/i18n/pt.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/pt_BR.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/pt_PT.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/ro.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/ru.po | 78 ++++- mass_mailing_custom_unsubscribe/i18n/sk.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/sl.po | 87 ++++- mass_mailing_custom_unsubscribe/i18n/sr.po | 77 ++++- .../i18n/sr@latin.po | 80 ++++- mass_mailing_custom_unsubscribe/i18n/sv.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/th.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/tr.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/tr_TR.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/uk.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/vi.po | 74 ++++- mass_mailing_custom_unsubscribe/i18n/vi_VN.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/zh_CN.po | 77 ++++- mass_mailing_custom_unsubscribe/i18n/zh_TW.po | 77 ++++- 70 files changed, 4720 insertions(+), 974 deletions(-) create mode 100644 mass_mailing_custom_unsubscribe/i18n/mass_mailing_custom_unsubscribe.pot diff --git a/mass_mailing_custom_unsubscribe/i18n/am.po b/mass_mailing_custom_unsubscribe/i18n/am.po index 36b1f097..e5483f86 100644 --- a/mass_mailing_custom_unsubscribe/i18n/am.po +++ b/mass_mailing_custom_unsubscribe/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ar.po b/mass_mailing_custom_unsubscribe/i18n/ar.po index 66303ff0..09c83401 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ar.po +++ b/mass_mailing_custom_unsubscribe/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "المعرف" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "السبب" msgid "Sequence" msgstr "مسلسل" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "سنة" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/bg.po b/mass_mailing_custom_unsubscribe/i18n/bg.po index a469133e..f7d8f71f 100644 --- a/mass_mailing_custom_unsubscribe/i18n/bg.po +++ b/mass_mailing_custom_unsubscribe/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Последователност" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/bs.po b/mass_mailing_custom_unsubscribe/i18n/bs.po index 61067ff7..3dbe903d 100644 --- a/mass_mailing_custom_unsubscribe/i18n/bs.po +++ b/mass_mailing_custom_unsubscribe/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Razlog" msgid "Sequence" msgstr "Sekvenca" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Godina" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ca.po b/mass_mailing_custom_unsubscribe/i18n/ca.po index 44002e10..e5265bcd 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ca.po +++ b/mass_mailing_custom_unsubscribe/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Correu electrònic" @@ -80,6 +105,11 @@ msgstr "Correu electrònic" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,12 @@ msgstr "Llista d'enviament" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Llista d'enviament" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "Correu massiu" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "Correus sortints" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Raó" msgid "Sequence" msgstr "Seqüència" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Any" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/cs.po b/mass_mailing_custom_unsubscribe/i18n/cs.po index 2e9e7b77..631866c2 100644 --- a/mass_mailing_custom_unsubscribe/i18n/cs.po +++ b/mass_mailing_custom_unsubscribe/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Důvod" msgid "Sequence" msgstr "Číselná řada" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Rok" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/da.po b/mass_mailing_custom_unsubscribe/i18n/da.po index 3050de0e..3c811b8f 100644 --- a/mass_mailing_custom_unsubscribe/i18n/da.po +++ b/mass_mailing_custom_unsubscribe/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "Id" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Rækkefølge" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/de.po b/mass_mailing_custom_unsubscribe/i18n/de.po index 900825ea..c7429f65 100644 --- a/mass_mailing_custom_unsubscribe/i18n/de.po +++ b/mass_mailing_custom_unsubscribe/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,38 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +#, fuzzy +msgid "(Un)subscriber" +msgstr "Abmeldender" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +#, fuzzy +msgid "(Un)subscriptions" +msgstr "Abmeldungen" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -73,6 +99,7 @@ msgstr "Zeige diese Liste nicht in anderen Abmeldungen" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -81,6 +108,11 @@ msgstr "Email" msgid "Group by" msgstr "Gruppiere nach" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -103,7 +135,7 @@ msgstr "Ich bin nicht interessiert" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -146,6 +178,12 @@ msgstr "Mailingliste" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Mailingliste" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -162,6 +200,11 @@ msgstr "Massenmailing" msgid "Mass mailing from which he was unsubscribed." msgstr "Massenversand, aus dem abgemeldet wurde." +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -188,7 +231,13 @@ msgid "Outgoing Mails" msgstr "Ausgehende Nachrichten" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -209,6 +258,12 @@ msgstr "Grund" msgid "Sequence" msgstr "Reihenfolge" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Subscription" +msgstr "Abmeldungen" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -220,9 +275,10 @@ msgid "Unsubscribe now" msgstr "Jetzt abmelden" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" -msgstr "Abmeldender" +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Unsubscription" +msgstr "Abmeldungen" #. module: mass_mailing_custom_unsubscribe #: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action @@ -231,14 +287,14 @@ msgid "Unsubscription Reasons" msgstr "Abmeldungsgründe" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "Abmeldungen" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +#, fuzzy +msgid "Who was subscribed or unsubscribed." msgstr "Wer sich abgemeldet hat." #. module: mass_mailing_custom_unsubscribe @@ -253,14 +309,14 @@ msgstr "Jahr" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/el_GR.po b/mass_mailing_custom_unsubscribe/i18n/el_GR.po index c97cbd48..f051990c 100644 --- a/mass_mailing_custom_unsubscribe/i18n/el_GR.po +++ b/mass_mailing_custom_unsubscribe/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -80,6 +106,11 @@ msgstr "Email" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "Κωδικός" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Ιεράρχηση" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/en_GB.po b/mass_mailing_custom_unsubscribe/i18n/en_GB.po index cdd03aed..d0207e0d 100644 --- a/mass_mailing_custom_unsubscribe/i18n/en_GB.po +++ b/mass_mailing_custom_unsubscribe/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Reason" msgid "Sequence" msgstr "Sequence" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Year" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es.po b/mass_mailing_custom_unsubscribe/i18n/es.po index d4a03df2..60f5a9ee 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es.po +++ b/mass_mailing_custom_unsubscribe/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 # enjolras , 2017 @@ -13,12 +13,38 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +#, fuzzy +msgid "(Un)subscriber" +msgstr "Se da de baja" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +#, fuzzy +msgid "(Un)subscriptions" +msgstr "Dados de baja" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -73,6 +99,7 @@ msgstr "No mostrar esta lista en las otras bajas" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Emai" @@ -81,6 +108,11 @@ msgstr "Emai" msgid "Group by" msgstr "Agrupar por" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -103,7 +135,7 @@ msgstr "No estoy interesado" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -146,6 +178,12 @@ msgstr "Lista de correo" msgid "Mailing Unsubscription" msgstr "Baja de lista de correo" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Lista de correo" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -162,6 +200,11 @@ msgstr "Envío masivo" msgid "Mass mailing from which he was unsubscribed." msgstr "Envío masivo del que ha sido dado de baja." +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -188,7 +231,13 @@ msgid "Outgoing Mails" msgstr "Correos salientes" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, fuzzy, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "Por favor, indique más detalles de por qué se da de baja." + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "Por favor, indique más detalles de por qué se da de baja." @@ -209,6 +258,12 @@ msgstr "Motivo" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Subscription" +msgstr "Dados de baja" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -220,9 +275,10 @@ msgid "Unsubscribe now" msgstr "Darse de baja ahora" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" -msgstr "Se da de baja" +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Unsubscription" +msgstr "Dados de baja" #. module: mass_mailing_custom_unsubscribe #: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action @@ -231,14 +287,14 @@ msgid "Unsubscription Reasons" msgstr "Motivos de la baja" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "Dados de baja" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +#, fuzzy +msgid "Who was subscribed or unsubscribed." msgstr "Quién se dio de baja." #. module: mass_mailing_custom_unsubscribe @@ -253,14 +309,14 @@ msgstr "Año" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "Se han guardado los cambios" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "Los cambios no se han guardado, vuelva a intentarlo." diff --git a/mass_mailing_custom_unsubscribe/i18n/es_AR.po b/mass_mailing_custom_unsubscribe/i18n/es_AR.po index e269272f..6d1c17f9 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_AR.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_CL.po b/mass_mailing_custom_unsubscribe/i18n/es_CL.po index e6785d6e..30fc2f02 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_CL.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID (identificación)" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_CO.po b/mass_mailing_custom_unsubscribe/i18n/es_CO.po index 01feae7b..dc38d3eb 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_CO.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "Correos Salientes" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_CR.po b/mass_mailing_custom_unsubscribe/i18n/es_CR.po index 14546b06..702a04dd 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_CR.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Razón" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Año" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_DO.po b/mass_mailing_custom_unsubscribe/i18n/es_DO.po index 16ad46f0..07481309 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_DO.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_EC.po b/mass_mailing_custom_unsubscribe/i18n/es_EC.po index b40f33d8..6b9c50f4 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_EC.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID (identificación)" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Motivo" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Año" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_ES.po b/mass_mailing_custom_unsubscribe/i18n/es_ES.po index f0852e9e..f1dd2ac0 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_ES.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_MX.po b/mass_mailing_custom_unsubscribe/i18n/es_MX.po index 147a2fa3..58e0cbe7 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_MX.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Razón" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Año" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_PE.po b/mass_mailing_custom_unsubscribe/i18n/es_PE.po index 0cd6810d..9923ed02 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_PE.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_PY.po b/mass_mailing_custom_unsubscribe/i18n/es_PY.po index eccc2f58..ae27b70d 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_PY.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/es_VE.po b/mass_mailing_custom_unsubscribe/i18n/es_VE.po index 0b77c7a2..f8c1a28f 100644 --- a/mass_mailing_custom_unsubscribe/i18n/es_VE.po +++ b/mass_mailing_custom_unsubscribe/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Razón" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/et.po b/mass_mailing_custom_unsubscribe/i18n/et.po index 015b0688..c7b996db 100644 --- a/mass_mailing_custom_unsubscribe/i18n/et.po +++ b/mass_mailing_custom_unsubscribe/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/eu.po b/mass_mailing_custom_unsubscribe/i18n/eu.po index 72d46fa6..f7ed3a9c 100644 --- a/mass_mailing_custom_unsubscribe/i18n/eu.po +++ b/mass_mailing_custom_unsubscribe/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Sekuentzia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Urtea" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fa.po b/mass_mailing_custom_unsubscribe/i18n/fa.po index de05f02f..dd7d86c5 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fa.po +++ b/mass_mailing_custom_unsubscribe/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: 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=1; plural=0;\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "شناسه" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "دنباله" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fi.po b/mass_mailing_custom_unsubscribe/i18n/fi.po index c9b077bc..e15547c5 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fi.po +++ b/mass_mailing_custom_unsubscribe/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Sähköposti" @@ -80,6 +105,11 @@ msgstr "Sähköposti" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "Lähtevät postit" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Syy" msgid "Sequence" msgstr "Sekvenssi" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Vuosi" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fr.po b/mass_mailing_custom_unsubscribe/i18n/fr.po index 114e4281..fff03df0 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fr.po +++ b/mass_mailing_custom_unsubscribe/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # Quentin THEURET , 2017 # OCA Transbot , 2017 @@ -13,12 +13,38 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +#, fuzzy +msgid "(Un)subscriber" +msgstr "Désabonneur" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +#, fuzzy +msgid "(Un)subscriptions" +msgstr "Désabonnements" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -77,6 +103,7 @@ msgstr "Ne pas montrer cette liste dans les autres désabonnements" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Courriel" @@ -85,6 +112,11 @@ msgstr "Courriel" msgid "Group by" msgstr "Grouper par" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -107,7 +139,7 @@ msgstr "Je ne suis pas intéressé" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -150,6 +182,12 @@ msgstr "Liste de diffusion" msgid "Mailing Unsubscription" msgstr "Désinscription de la liste" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Liste de diffusion" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -166,6 +204,11 @@ msgstr "Publipostage" msgid "Mass mailing from which he was unsubscribed." msgstr "Publipostage dont il était désabonné." +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -192,7 +235,13 @@ msgid "Outgoing Mails" msgstr "Courriels sortants" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, fuzzy, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "Merci de fournir des détails sur les raisons de votre désinscription." + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "Merci de fournir des détails sur les raisons de votre désinscription." @@ -213,6 +262,12 @@ msgstr "Motif" msgid "Sequence" msgstr "Séquence" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Subscription" +msgstr "Désabonnements" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -224,9 +279,10 @@ msgid "Unsubscribe now" msgstr "Se désabonner maintenant" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" -msgstr "Désabonneur" +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Unsubscription" +msgstr "Désabonnements" #. module: mass_mailing_custom_unsubscribe #: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action @@ -235,14 +291,14 @@ msgid "Unsubscription Reasons" msgstr "Motifs de désabonnement" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "Désabonnements" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +#, fuzzy +msgid "Who was subscribed or unsubscribed." msgstr "Qui s'était désabonné" #. module: mass_mailing_custom_unsubscribe @@ -257,14 +313,14 @@ msgstr "Année" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "Vos modifications ont bien été enregistrées." #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fr_CA.po b/mass_mailing_custom_unsubscribe/i18n/fr_CA.po index 687b4ff7..205dabf7 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fr_CA.po +++ b/mass_mailing_custom_unsubscribe/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "Identifiant" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Année" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fr_CH.po b/mass_mailing_custom_unsubscribe/i18n/fr_CH.po index 7f02ec35..4bddd182 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fr_CH.po +++ b/mass_mailing_custom_unsubscribe/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/fr_FR.po b/mass_mailing_custom_unsubscribe/i18n/fr_FR.po index aca506c0..a5498ed7 100644 --- a/mass_mailing_custom_unsubscribe/i18n/fr_FR.po +++ b/mass_mailing_custom_unsubscribe/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,16 +11,36 @@ msgstr "" "POT-Creation-Date: 2017-05-31 04:27+0000\n" "PO-Revision-Date: 2017-05-31 04:27+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/fr_FR/)\n" +"Language-Team: French (France) (https://www.transifex.com/oca/teams/23907/" +"fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_needaction -msgid "Action Needed" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -53,11 +73,6 @@ msgstr "" msgid "Date" msgstr "Date" -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_last_post -msgid "Date of the last message posted on the record." -msgstr "" - #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_details msgid "Details" @@ -82,32 +97,18 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_unsubscription -msgid "Email Thread" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_follower_ids -msgid "Followers" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_channel_ids -msgid "Followers (Channels)" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_partner_ids -msgid "Followers (Partners)" +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Group by" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search -msgid "Group by" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -132,20 +133,10 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2584 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "" -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_unread -msgid "If checked new messages require your attention." -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_needaction -msgid "If checked, new messages require your attention." -msgstr "" - #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_mass_mailing_list_not_cross_unsubscriptable msgid "" @@ -154,16 +145,6 @@ msgid "" "want to leave?'" msgstr "" -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_is_follower -msgid "Is Follower" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_last_post -msgid "Last Message Date" -msgstr "" - #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription___last_update #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason___last_update @@ -192,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -209,18 +195,8 @@ msgid "Mass mailing from which he was unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_content -msgid "Message Content" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_content -msgid "Message content, to be used only in searches" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_ids -msgid "Messages" +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -238,21 +214,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_needaction_counter -msgid "Number of Actions" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_needaction_counter -msgid "Number of messages which requires an action" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_unread_counter -msgid "Number of unread messages" -msgstr "" - #. module: mass_mailing_custom_unsubscribe #: model:mail.unsubscription.reason,name:mass_mailing_custom_unsubscribe.reason_other msgid "Other reason" @@ -264,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -286,18 +253,13 @@ msgid "Sequence" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form -msgid "Thank you!" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_unread -msgid "Unread Messages" +#: selection:mail.unsubscription,action:0 +msgid "Subscription" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_message_unread_counter -msgid "Unread Messages Counter" +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form +msgid "Thank you!" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -306,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -317,24 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_website_message_ids -msgid "Website Messages" -msgstr "" - -#. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_website_message_ids -msgid "Website communication history" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -349,18 +300,23 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_unsubscription +msgid "mail.unsubscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_unsubscription_reason msgid "mail.unsubscription.reason" diff --git a/mass_mailing_custom_unsubscribe/i18n/gl.po b/mass_mailing_custom_unsubscribe/i18n/gl.po index 543fd4bd..25a8088b 100644 --- a/mass_mailing_custom_unsubscribe/i18n/gl.po +++ b/mass_mailing_custom_unsubscribe/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Secuencia" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Ano" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/gl_ES.po b/mass_mailing_custom_unsubscribe/i18n/gl_ES.po index 869ba3d9..35ebc9c3 100644 --- a/mass_mailing_custom_unsubscribe/i18n/gl_ES.po +++ b/mass_mailing_custom_unsubscribe/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/he.po b/mass_mailing_custom_unsubscribe/i18n/he.po index 8133c780..39a8d6f5 100644 --- a/mass_mailing_custom_unsubscribe/i18n/he.po +++ b/mass_mailing_custom_unsubscribe/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: 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=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "מזהה" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "רצף" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/hr.po b/mass_mailing_custom_unsubscribe/i18n/hr.po index 8f603b10..4d80308c 100644 --- a/mass_mailing_custom_unsubscribe/i18n/hr.po +++ b/mass_mailing_custom_unsubscribe/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-mail" @@ -80,6 +106,11 @@ msgstr "E-mail" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,12 @@ msgstr "Mailing lista" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Mailing lista" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "Razlog" msgid "Sequence" msgstr "Redoslijed" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "Godina" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/hr_HR.po b/mass_mailing_custom_unsubscribe/i18n/hr_HR.po index ce461de0..0156236c 100644 --- a/mass_mailing_custom_unsubscribe/i18n/hr_HR.po +++ b/mass_mailing_custom_unsubscribe/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +107,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/hu.po b/mass_mailing_custom_unsubscribe/i18n/hu.po index 4a560c91..a28694ac 100644 --- a/mass_mailing_custom_unsubscribe/i18n/hu.po +++ b/mass_mailing_custom_unsubscribe/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -80,6 +105,11 @@ msgstr "Email" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Indoklás" msgid "Sequence" msgstr "Sorszám" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Év" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/id.po b/mass_mailing_custom_unsubscribe/i18n/id.po index bad8e8b0..71079437 100644 --- a/mass_mailing_custom_unsubscribe/i18n/id.po +++ b/mass_mailing_custom_unsubscribe/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Berurutan" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/it.po b/mass_mailing_custom_unsubscribe/i18n/it.po index 38f4536f..b156ba2f 100644 --- a/mass_mailing_custom_unsubscribe/i18n/it.po +++ b/mass_mailing_custom_unsubscribe/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,38 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +#, fuzzy +msgid "(Un)subscriber" +msgstr "Disiscrivi adesso" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +#, fuzzy +msgid "(Un)subscriptions" +msgstr "Disiscrizioni" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -80,6 +107,11 @@ msgstr "Email" msgid "Group by" msgstr "Raggruppa per" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "Non sono interessato" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,12 @@ msgstr "Mailing List" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Mailing List" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +196,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +227,13 @@ msgid "Outgoing Mails" msgstr "Mail in Uscita" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +254,12 @@ msgstr "Motivo" msgid "Sequence" msgstr "Sequenza" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Subscription" +msgstr "Disiscrizioni" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,9 +271,10 @@ msgid "Unsubscribe now" msgstr "Disiscrivi adesso" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" -msgstr "" +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Unsubscription" +msgstr "Disiscrizioni" #. module: mass_mailing_custom_unsubscribe #: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action @@ -227,14 +283,14 @@ msgid "Unsubscription Reasons" msgstr "Motivi Disiscrizione" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "Disiscrizioni" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +#, fuzzy +msgid "Who was subscribed or unsubscribed." msgstr "Chi si è disiscritto." #. module: mass_mailing_custom_unsubscribe @@ -249,14 +305,14 @@ msgstr "Anno" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ja.po b/mass_mailing_custom_unsubscribe/i18n/ja.po index 2822aa49..111e0ca7 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ja.po +++ b/mass_mailing_custom_unsubscribe/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "理由" msgid "Sequence" msgstr "順序" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "年" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ko.po b/mass_mailing_custom_unsubscribe/i18n/ko.po index 74a26c64..282e899c 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ko.po +++ b/mass_mailing_custom_unsubscribe/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "순서" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/lt.po b/mass_mailing_custom_unsubscribe/i18n/lt.po index f08e96b9..e7424de1 100644 --- a/mass_mailing_custom_unsubscribe/i18n/lt.po +++ b/mass_mailing_custom_unsubscribe/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Priežastis" msgid "Sequence" msgstr "Seka" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Metai" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/lt_LT.po b/mass_mailing_custom_unsubscribe/i18n/lt_LT.po index 1d8ef4e1..f1305259 100644 --- a/mass_mailing_custom_unsubscribe/i18n/lt_LT.po +++ b/mass_mailing_custom_unsubscribe/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +107,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/lv.po b/mass_mailing_custom_unsubscribe/i18n/lv.po index 95ca1e5b..08ea539b 100644 --- a/mass_mailing_custom_unsubscribe/i18n/lv.po +++ b/mass_mailing_custom_unsubscribe/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-pasts" @@ -80,6 +106,11 @@ msgstr "E-pasts" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Secība" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/mass_mailing_custom_unsubscribe.pot b/mass_mailing_custom_unsubscribe/i18n/mass_mailing_custom_unsubscribe.pot new file mode 100644 index 00000000..9e56e05c --- /dev/null +++ b/mass_mailing_custom_unsubscribe/i18n/mass_mailing_custom_unsubscribe.pot @@ -0,0 +1,313 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_custom_unsubscribe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason +msgid "Before unsubscribing, could you please tell us why do you want to unsubscribe?" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_details_required +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_details_required +msgid "Check to ask for more details when this reason is selected." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_create_uid +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_create_uid +msgid "Created by" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_create_date +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_create_date +msgid "Created on" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_date +msgid "Date" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_details +msgid "Details" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_details_required +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_details_required +msgid "Details required" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_display_name +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_display_name +msgid "Display Name" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_mass_mailing_list_not_cross_unsubscriptable +msgid "Don't show this list in the other unsubscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Email" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Group by" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason +msgid "I am unsubscribing because..." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:mail.unsubscription.reason,name:mass_mailing_custom_unsubscribe.reason_not_requested +msgid "I did not request this" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:mail.unsubscription.reason,name:mass_mailing_custom_unsubscribe.reason_too_many +msgid "I get too many emails" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:mail.unsubscription.reason,name:mass_mailing_custom_unsubscribe.reason_not_interested +msgid "I'm not interested" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 +msgid "ID" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_mass_mailing_list_not_cross_unsubscriptable +msgid "If you mark this field, this list won't be shown when unsubscribing from other mailing list, in the section: 'Is there any other mailing list you want to leave?'" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription___last_update +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_write_uid +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_write_date +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form +msgid "Mailing Unsubscription" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing +msgid "Mass Mailing" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mass_mailing_id +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Mass mailing" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mass_mailing_id +msgid "Mass mailing from which he was unsubscribed." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Month" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_details +msgid "More details on why the unsubscription was made." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_name +msgid "Name" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:mail.unsubscription.reason,name:mass_mailing_custom_unsubscribe.reason_other +msgid "Other reason" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mail +msgid "Outgoing Mails" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 +#, python-format +msgid "Please provide details on why you are unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_sequence +msgid "Position of the reason in the list." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Reason" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_sequence +msgid "Sequence" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form +msgid "Thank you!" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form +msgid "Unsubscribe now" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_menu +msgid "Unsubscription Reasons" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "Who was subscribed or unsubscribed." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id +msgid "Why the unsubscription was made." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Year" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#. openerp-web +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 +#, python-format +msgid "Your changes have been saved." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#. openerp-web +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 +#, python-format +msgid "Your changes have not been saved, try again later." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_unsubscription +msgid "mail.unsubscription" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_unsubscription_reason +msgid "mail.unsubscription.reason" +msgstr "" + diff --git a/mass_mailing_custom_unsubscribe/i18n/mk.po b/mass_mailing_custom_unsubscribe/i18n/mk.po index 0b196b6b..1ebd36c0 100644 --- a/mass_mailing_custom_unsubscribe/i18n/mk.po +++ b/mass_mailing_custom_unsubscribe/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Причина" msgid "Sequence" msgstr "Секвенца" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Година" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/mn.po b/mass_mailing_custom_unsubscribe/i18n/mn.po index cee3da6c..ac441c8a 100644 --- a/mass_mailing_custom_unsubscribe/i18n/mn.po +++ b/mass_mailing_custom_unsubscribe/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Шалтгаан" msgid "Sequence" msgstr "Дараалал" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Жил" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/nb.po b/mass_mailing_custom_unsubscribe/i18n/nb.po index ff3552df..f9b7d168 100644 --- a/mass_mailing_custom_unsubscribe/i18n/nb.po +++ b/mass_mailing_custom_unsubscribe/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-post" @@ -80,6 +106,11 @@ msgstr "E-post" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Grunn" msgid "Sequence" msgstr "Sekvens" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "År" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/nb_NO.po b/mass_mailing_custom_unsubscribe/i18n/nb_NO.po index 18b17fb3..2e430ff0 100644 --- a/mass_mailing_custom_unsubscribe/i18n/nb_NO.po +++ b/mass_mailing_custom_unsubscribe/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/nl.po b/mass_mailing_custom_unsubscribe/i18n/nl.po index cecf9655..cdc3db59 100644 --- a/mass_mailing_custom_unsubscribe/i18n/nl.po +++ b/mass_mailing_custom_unsubscribe/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-mail" @@ -80,6 +105,11 @@ msgstr "E-mail" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Oorzaak" msgid "Sequence" msgstr "Reeks" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Jaar" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/nl_BE.po b/mass_mailing_custom_unsubscribe/i18n/nl_BE.po index cd35cb2f..f98a4270 100644 --- a/mass_mailing_custom_unsubscribe/i18n/nl_BE.po +++ b/mass_mailing_custom_unsubscribe/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Reden" msgid "Sequence" msgstr "Volgorde" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Jaar" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/nl_NL.po b/mass_mailing_custom_unsubscribe/i18n/nl_NL.po index 2a53108b..1e83f150 100644 --- a/mass_mailing_custom_unsubscribe/i18n/nl_NL.po +++ b/mass_mailing_custom_unsubscribe/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # Peter Hageman , 2017 # OCA Transbot , 2017 @@ -12,13 +12,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -73,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-mail" @@ -81,6 +107,11 @@ msgstr "E-mail" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -103,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -143,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -159,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -185,7 +226,13 @@ msgid "Outgoing Mails" msgstr "Uitgaande Mails" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -206,6 +253,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -217,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -228,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -250,14 +301,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/pl.po b/mass_mailing_custom_unsubscribe/i18n/pl.po index 9a841fb7..2d371b8e 100644 --- a/mass_mailing_custom_unsubscribe/i18n/pl.po +++ b/mass_mailing_custom_unsubscribe/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,37 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +107,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "Przyczyna" msgid "Sequence" msgstr "Numeracja" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "Rok" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/pt.po b/mass_mailing_custom_unsubscribe/i18n/pt.po index f306ad58..06ebf31a 100644 --- a/mass_mailing_custom_unsubscribe/i18n/pt.po +++ b/mass_mailing_custom_unsubscribe/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,12 +13,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -73,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -81,6 +106,11 @@ msgstr "Email" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -103,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -143,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -159,6 +194,11 @@ msgstr "Emails em massa" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -185,7 +225,13 @@ msgid "Outgoing Mails" msgstr "Mensagens a Enviar" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -206,6 +252,11 @@ msgstr "Motivo" msgid "Sequence" msgstr "Sequência" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -217,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -228,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -250,14 +300,14 @@ msgstr "Ano" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/pt_BR.po b/mass_mailing_custom_unsubscribe/i18n/pt_BR.po index fab5d681..f4e01160 100644 --- a/mass_mailing_custom_unsubscribe/i18n/pt_BR.po +++ b/mass_mailing_custom_unsubscribe/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-mail" @@ -80,6 +106,11 @@ msgstr "E-mail" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "Identificação" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "Mails de Saída" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Razão" msgid "Sequence" msgstr "Sequência" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Ano" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/pt_PT.po b/mass_mailing_custom_unsubscribe/i18n/pt_PT.po index 39ac19ce..335d3051 100644 --- a/mass_mailing_custom_unsubscribe/i18n/pt_PT.po +++ b/mass_mailing_custom_unsubscribe/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Motivo" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "Ano" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ro.po b/mass_mailing_custom_unsubscribe/i18n/ro.po index 04ce55d4..d9666720 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ro.po +++ b/mass_mailing_custom_unsubscribe/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Email" @@ -80,6 +106,11 @@ msgstr "Email" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Motivul" msgid "Sequence" msgstr "Secventa" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "An" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/ru.po b/mass_mailing_custom_unsubscribe/i18n/ru.po index 9e92097b..9f938d76 100644 --- a/mass_mailing_custom_unsubscribe/i18n/ru.po +++ b/mass_mailing_custom_unsubscribe/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,37 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Эл. почта" @@ -80,6 +107,11 @@ msgstr "Эл. почта" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "Причина" msgid "Sequence" msgstr "Последовательность" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "Год" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/sk.po b/mass_mailing_custom_unsubscribe/i18n/sk.po index a71fad27..71fa327b 100644 --- a/mass_mailing_custom_unsubscribe/i18n/sk.po +++ b/mass_mailing_custom_unsubscribe/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "" msgid "Sequence" msgstr "Postupnosť" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/sl.po b/mass_mailing_custom_unsubscribe/i18n/sl.po index cd819f7f..592c5b66 100644 --- a/mass_mailing_custom_unsubscribe/i18n/sl.po +++ b/mass_mailing_custom_unsubscribe/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,38 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +#, fuzzy +msgid "(Un)subscriber" +msgstr "Odjavitelj" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +#, fuzzy +msgid "(Un)subscriptions" +msgstr "Odjave" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -73,6 +100,7 @@ msgstr "Ne prikaži tega seznama pri drugih odjavah" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-pošta" @@ -81,6 +109,11 @@ msgstr "E-pošta" msgid "Group by" msgstr "Združi po" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -103,7 +136,7 @@ msgstr "Me ne zanima" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -146,6 +179,12 @@ msgstr "Poštni seznam" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +#, fuzzy +msgid "Mailing list" +msgstr "Poštni seznam" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -162,6 +201,11 @@ msgstr "Masovna pošta" msgid "Mass mailing from which he was unsubscribed." msgstr "Masovna pošta od katere je bil odjavljen." +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -188,7 +232,13 @@ msgid "Outgoing Mails" msgstr "Izhodna pošta" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -209,6 +259,12 @@ msgstr "Razlog" msgid "Sequence" msgstr "Zaporedje" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Subscription" +msgstr "Odjave" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -220,9 +276,10 @@ msgid "Unsubscribe now" msgstr "Odjavi se zdaj" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" -msgstr "Odjavitelj" +#: selection:mail.unsubscription,action:0 +#, fuzzy +msgid "Unsubscription" +msgstr "Odjave" #. module: mass_mailing_custom_unsubscribe #: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_reason_action @@ -231,14 +288,14 @@ msgid "Unsubscription Reasons" msgstr "Razlogi za odjavo" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" -msgstr "Odjave" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +#, fuzzy +msgid "Who was subscribed or unsubscribed." msgstr "Kdo se je odjavil." #. module: mass_mailing_custom_unsubscribe @@ -253,14 +310,14 @@ msgstr "Leto" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/sr.po b/mass_mailing_custom_unsubscribe/i18n/sr.po index 4aeb6487..25065ae4 100644 --- a/mass_mailing_custom_unsubscribe/i18n/sr.po +++ b/mass_mailing_custom_unsubscribe/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: 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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Niz" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/sr@latin.po b/mass_mailing_custom_unsubscribe/i18n/sr@latin.po index 278282f8..c9a752e4 100644 --- a/mass_mailing_custom_unsubscribe/i18n/sr@latin.po +++ b/mass_mailing_custom_unsubscribe/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +98,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +107,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +134,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +174,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +195,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +226,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +253,11 @@ msgstr "Razlog" msgid "Sequence" msgstr "Sekvenca" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +269,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +280,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +301,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/sv.po b/mass_mailing_custom_unsubscribe/i18n/sv.po index 10514d51..94faeda5 100644 --- a/mass_mailing_custom_unsubscribe/i18n/sv.po +++ b/mass_mailing_custom_unsubscribe/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "E-post" @@ -80,6 +105,11 @@ msgstr "E-post" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Orsak" msgid "Sequence" msgstr "Sequence" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "År" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/th.po b/mass_mailing_custom_unsubscribe/i18n/th.po index 6ad9bf9c..40291f62 100644 --- a/mass_mailing_custom_unsubscribe/i18n/th.po +++ b/mass_mailing_custom_unsubscribe/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "รหัส" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "เหตุผล" msgid "Sequence" msgstr "กำหนดเลขที่เอกสาร" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "ปี" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/tr.po b/mass_mailing_custom_unsubscribe/i18n/tr.po index c3577944..9f93ee0f 100644 --- a/mass_mailing_custom_unsubscribe/i18n/tr.po +++ b/mass_mailing_custom_unsubscribe/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "Eposta" @@ -80,6 +105,11 @@ msgstr "Eposta" msgid "Group by" msgstr "İle Guruplandır" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Sebep" msgid "Sequence" msgstr "Sıralama" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "Yıl" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/tr_TR.po b/mass_mailing_custom_unsubscribe/i18n/tr_TR.po index 46502a38..e8a50567 100644 --- a/mass_mailing_custom_unsubscribe/i18n/tr_TR.po +++ b/mass_mailing_custom_unsubscribe/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "Kimlik" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "Neden" msgid "Sequence" msgstr "Sıra" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/uk.po b/mass_mailing_custom_unsubscribe/i18n/uk.po index 28ea5bdf..6b463374 100644 --- a/mass_mailing_custom_unsubscribe/i18n/uk.po +++ b/mass_mailing_custom_unsubscribe/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "Послідовність" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/vi.po b/mass_mailing_custom_unsubscribe/i18n/vi.po index b9a5905e..f6b6e41b 100644 --- a/mass_mailing_custom_unsubscribe/i18n/vi.po +++ b/mass_mailing_custom_unsubscribe/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,12 +12,36 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +96,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +105,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +132,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +172,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +193,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +224,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +251,11 @@ msgstr "Lý do" msgid "Sequence" msgstr "Trình tự" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +267,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +278,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +299,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/vi_VN.po b/mass_mailing_custom_unsubscribe/i18n/vi_VN.po index af7ff3b5..d7028f99 100644 --- a/mass_mailing_custom_unsubscribe/i18n/vi_VN.po +++ b/mass_mailing_custom_unsubscribe/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "" msgid "Sequence" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/zh_CN.po b/mass_mailing_custom_unsubscribe/i18n/zh_CN.po index ac43b5a4..36ad7759 100644 --- a/mass_mailing_custom_unsubscribe/i18n/zh_CN.po +++ b/mass_mailing_custom_unsubscribe/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "ID" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "理由" msgid "Sequence" msgstr "序列" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "年" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" diff --git a/mass_mailing_custom_unsubscribe/i18n/zh_TW.po b/mass_mailing_custom_unsubscribe/i18n/zh_TW.po index fd92dd59..f2a07a4a 100644 --- a/mass_mailing_custom_unsubscribe/i18n/zh_TW.po +++ b/mass_mailing_custom_unsubscribe/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_custom_unsubscribe -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,13 +11,38 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "(Un)subscribed mass mailing list, if any." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id +msgid "(Un)subscriber" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action +#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_graph +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_pivot +msgid "(Un)subscriptions" +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search +msgid "Action" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "" @@ -72,6 +97,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_email +#: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Email" msgstr "" @@ -80,6 +106,11 @@ msgstr "" msgid "Group by" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "HTTP request metadata used when creating this record." +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason msgid "I am unsubscribing because..." @@ -102,7 +133,7 @@ msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_id -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2723 +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_reason_id_2801 msgid "ID" msgstr "編號" @@ -142,6 +173,11 @@ msgstr "" msgid "Mailing Unsubscription" msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_mailing_list_id +msgid "Mailing list" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.model,name:mass_mailing_custom_unsubscribe.model_mail_mass_mailing msgid "Mass Mailing" @@ -158,6 +194,11 @@ msgstr "" msgid "Mass mailing from which he was unsubscribed." msgstr "" +#. module: mass_mailing_custom_unsubscribe +#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_metadata +msgid "Metadata" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.mail_unsubscription_view_search msgid "Month" @@ -184,7 +225,13 @@ msgid "Outgoing Mails" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:56 +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:76 +#, python-format +msgid "Please indicate why are you unsubscribing." +msgstr "" + +#. module: mass_mailing_custom_unsubscribe +#: code:addons/mass_mailing_custom_unsubscribe/models/mail_unsubscription.py:85 #, python-format msgid "Please provide details on why you are unsubscribing." msgstr "" @@ -205,6 +252,11 @@ msgstr "原因" msgid "Sequence" msgstr "序列" +#. module: mass_mailing_custom_unsubscribe +#: selection:mail.unsubscription,action:0 +msgid "Subscription" +msgstr "" + #. module: mass_mailing_custom_unsubscribe #: model:ir.ui.view,arch_db:mass_mailing_custom_unsubscribe.reason_form msgid "Thank you!" @@ -216,8 +268,8 @@ msgid "Unsubscribe now" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.model.fields,field_description:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Unsubscriber" +#: selection:mail.unsubscription,action:0 +msgid "Unsubscription" msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -227,14 +279,13 @@ msgid "Unsubscription Reasons" msgstr "" #. module: mass_mailing_custom_unsubscribe -#: model:ir.actions.act_window,name:mass_mailing_custom_unsubscribe.mail_unsubscription_action -#: model:ir.ui.menu,name:mass_mailing_custom_unsubscribe.mail_unsubscription_menu -msgid "Unsubscriptions" +#: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_action +msgid "What did the (un)subscriber choose to do." msgstr "" #. module: mass_mailing_custom_unsubscribe #: model:ir.model.fields,help:mass_mailing_custom_unsubscribe.field_mail_unsubscription_unsubscriber_id -msgid "Who was unsubscribed." +msgid "Who was subscribed or unsubscribed." msgstr "" #. module: mass_mailing_custom_unsubscribe @@ -249,14 +300,14 @@ msgstr "年度" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:91 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:99 #, python-format msgid "Your changes have been saved." msgstr "" #. module: mass_mailing_custom_unsubscribe #. openerp-web -#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:106 +#: code:addons/mass_mailing_custom_unsubscribe/static/src/js/unsubscribe.js:114 #, python-format msgid "Your changes have not been saved, try again later." msgstr "" From 9dce44ffb45bb15465f9642403a13169b934b27a Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:57 +0000 Subject: [PATCH 41/86] [UPD] Update mass_mailing_event.pot --- mass_mailing_event/i18n/am.po | 4 +- mass_mailing_event/i18n/ar.po | 7 +- mass_mailing_event/i18n/bg.po | 4 +- mass_mailing_event/i18n/bs.po | 7 +- mass_mailing_event/i18n/ca.po | 4 +- mass_mailing_event/i18n/cs.po | 4 +- mass_mailing_event/i18n/da.po | 4 +- mass_mailing_event/i18n/de.po | 4 +- mass_mailing_event/i18n/el_GR.po | 7 +- mass_mailing_event/i18n/en_GB.po | 7 +- mass_mailing_event/i18n/es.po | 4 +- mass_mailing_event/i18n/es_AR.po | 7 +- mass_mailing_event/i18n/es_CL.po | 7 +- mass_mailing_event/i18n/es_CO.po | 7 +- mass_mailing_event/i18n/es_CR.po | 7 +- mass_mailing_event/i18n/es_DO.po | 7 +- mass_mailing_event/i18n/es_EC.po | 7 +- mass_mailing_event/i18n/es_ES.po | 7 +- mass_mailing_event/i18n/es_MX.po | 7 +- mass_mailing_event/i18n/es_PE.po | 7 +- mass_mailing_event/i18n/es_PY.po | 7 +- mass_mailing_event/i18n/es_VE.po | 7 +- mass_mailing_event/i18n/et.po | 4 +- mass_mailing_event/i18n/eu.po | 4 +- mass_mailing_event/i18n/fa.po | 4 +- mass_mailing_event/i18n/fi.po | 4 +- mass_mailing_event/i18n/fr.po | 4 +- mass_mailing_event/i18n/fr_CA.po | 7 +- mass_mailing_event/i18n/fr_CH.po | 7 +- mass_mailing_event/i18n/gl.po | 4 +- mass_mailing_event/i18n/gl_ES.po | 7 +- mass_mailing_event/i18n/he.po | 4 +- mass_mailing_event/i18n/hr.po | 7 +- mass_mailing_event/i18n/hr_HR.po | 10 +- mass_mailing_event/i18n/hu.po | 4 +- mass_mailing_event/i18n/id.po | 4 +- mass_mailing_event/i18n/it.po | 4 +- mass_mailing_event/i18n/ja.po | 4 +- mass_mailing_event/i18n/ko.po | 4 +- mass_mailing_event/i18n/lt.po | 7 +- mass_mailing_event/i18n/lt_LT.po | 10 +- mass_mailing_event/i18n/lv.po | 7 +- .../i18n/mass_mailing_event.pot | 95 +++++++++++++++++++ mass_mailing_event/i18n/mk.po | 4 +- mass_mailing_event/i18n/mn.po | 4 +- mass_mailing_event/i18n/nb.po | 7 +- mass_mailing_event/i18n/nb_NO.po | 7 +- mass_mailing_event/i18n/nl.po | 4 +- mass_mailing_event/i18n/nl_BE.po | 7 +- mass_mailing_event/i18n/nl_NL.po | 7 +- mass_mailing_event/i18n/pl.po | 8 +- mass_mailing_event/i18n/pt.po | 4 +- mass_mailing_event/i18n/pt_BR.po | 7 +- mass_mailing_event/i18n/pt_PT.po | 7 +- mass_mailing_event/i18n/ro.po | 7 +- mass_mailing_event/i18n/ru.po | 8 +- mass_mailing_event/i18n/sk.po | 4 +- mass_mailing_event/i18n/sl.po | 7 +- mass_mailing_event/i18n/sr.po | 7 +- mass_mailing_event/i18n/sr@latin.po | 10 +- mass_mailing_event/i18n/sv.po | 4 +- mass_mailing_event/i18n/th.po | 4 +- mass_mailing_event/i18n/tr.po | 4 +- mass_mailing_event/i18n/tr_TR.po | 7 +- mass_mailing_event/i18n/uk.po | 7 +- mass_mailing_event/i18n/vi.po | 4 +- mass_mailing_event/i18n/vi_VN.po | 7 +- mass_mailing_event/i18n/zh_CN.po | 7 +- mass_mailing_event/i18n/zh_TW.po | 7 +- 69 files changed, 319 insertions(+), 179 deletions(-) create mode 100644 mass_mailing_event/i18n/mass_mailing_event.pot diff --git a/mass_mailing_event/i18n/am.po b/mass_mailing_event/i18n/am.po index ed80c64c..44b91e4d 100644 --- a/mass_mailing_event/i18n/am.po +++ b/mass_mailing_event/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/ar.po b/mass_mailing_event/i18n/ar.po index 129f13b1..cef9bce2 100644 --- a/mass_mailing_event/i18n/ar.po +++ b/mass_mailing_event/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/bg.po b/mass_mailing_event/i18n/bg.po index be1a050a..30508e92 100644 --- a/mass_mailing_event/i18n/bg.po +++ b/mass_mailing_event/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/bs.po b/mass_mailing_event/i18n/bs.po index 5780564d..9d78f079 100644 --- a/mass_mailing_event/i18n/bs.po +++ b/mass_mailing_event/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/ca.po b/mass_mailing_event/i18n/ca.po index 58229d95..f7497cfa 100644 --- a/mass_mailing_event/i18n/ca.po +++ b/mass_mailing_event/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/cs.po b/mass_mailing_event/i18n/cs.po index 306a2902..4b63470f 100644 --- a/mass_mailing_event/i18n/cs.po +++ b/mass_mailing_event/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/da.po b/mass_mailing_event/i18n/da.po index cb815c6f..21c377e2 100644 --- a/mass_mailing_event/i18n/da.po +++ b/mass_mailing_event/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/de.po b/mass_mailing_event/i18n/de.po index 28516053..4a5bf39b 100644 --- a/mass_mailing_event/i18n/de.po +++ b/mass_mailing_event/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/el_GR.po b/mass_mailing_event/i18n/el_GR.po index 3780d605..d5bee06e 100644 --- a/mass_mailing_event/i18n/el_GR.po +++ b/mass_mailing_event/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/en_GB.po b/mass_mailing_event/i18n/en_GB.po index 0ca4f4f3..f0ddd352 100644 --- a/mass_mailing_event/i18n/en_GB.po +++ b/mass_mailing_event/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es.po b/mass_mailing_event/i18n/es.po index 4def9aec..56610632 100644 --- a/mass_mailing_event/i18n/es.po +++ b/mass_mailing_event/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 # enjolras , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_AR.po b/mass_mailing_event/i18n/es_AR.po index 4220b10d..f9154f1d 100644 --- a/mass_mailing_event/i18n/es_AR.po +++ b/mass_mailing_event/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_CL.po b/mass_mailing_event/i18n/es_CL.po index 19f08d4a..2a47bcef 100644 --- a/mass_mailing_event/i18n/es_CL.po +++ b/mass_mailing_event/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_CO.po b/mass_mailing_event/i18n/es_CO.po index 91ff9e94..598b4797 100644 --- a/mass_mailing_event/i18n/es_CO.po +++ b/mass_mailing_event/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_CR.po b/mass_mailing_event/i18n/es_CR.po index 3e008d2a..f393bbbf 100644 --- a/mass_mailing_event/i18n/es_CR.po +++ b/mass_mailing_event/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_DO.po b/mass_mailing_event/i18n/es_DO.po index c17d22ae..07b73da2 100644 --- a/mass_mailing_event/i18n/es_DO.po +++ b/mass_mailing_event/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_EC.po b/mass_mailing_event/i18n/es_EC.po index 5176866a..72262b89 100644 --- a/mass_mailing_event/i18n/es_EC.po +++ b/mass_mailing_event/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_ES.po b/mass_mailing_event/i18n/es_ES.po index 9c8620bd..0fb80b50 100644 --- a/mass_mailing_event/i18n/es_ES.po +++ b/mass_mailing_event/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_MX.po b/mass_mailing_event/i18n/es_MX.po index 24de8008..94fa8028 100644 --- a/mass_mailing_event/i18n/es_MX.po +++ b/mass_mailing_event/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_PE.po b/mass_mailing_event/i18n/es_PE.po index dcd501d2..77ca14a0 100644 --- a/mass_mailing_event/i18n/es_PE.po +++ b/mass_mailing_event/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_PY.po b/mass_mailing_event/i18n/es_PY.po index a8b78209..60c7b4e4 100644 --- a/mass_mailing_event/i18n/es_PY.po +++ b/mass_mailing_event/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/es_VE.po b/mass_mailing_event/i18n/es_VE.po index e5b263f2..454195a5 100644 --- a/mass_mailing_event/i18n/es_VE.po +++ b/mass_mailing_event/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/et.po b/mass_mailing_event/i18n/et.po index be8f4114..92953500 100644 --- a/mass_mailing_event/i18n/et.po +++ b/mass_mailing_event/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/eu.po b/mass_mailing_event/i18n/eu.po index 29062027..462b0289 100644 --- a/mass_mailing_event/i18n/eu.po +++ b/mass_mailing_event/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/fa.po b/mass_mailing_event/i18n/fa.po index 5119e9aa..5bf5b914 100644 --- a/mass_mailing_event/i18n/fa.po +++ b/mass_mailing_event/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: 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=1; plural=0;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/fi.po b/mass_mailing_event/i18n/fi.po index 94dc3663..eacdce02 100644 --- a/mass_mailing_event/i18n/fi.po +++ b/mass_mailing_event/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/fr.po b/mass_mailing_event/i18n/fr.po index 13697582..7d5d16d4 100644 --- a/mass_mailing_event/i18n/fr.po +++ b/mass_mailing_event/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/fr_CA.po b/mass_mailing_event/i18n/fr_CA.po index ea7ad27a..f8c9f234 100644 --- a/mass_mailing_event/i18n/fr_CA.po +++ b/mass_mailing_event/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/fr_CH.po b/mass_mailing_event/i18n/fr_CH.po index e5164315..e8e5b843 100644 --- a/mass_mailing_event/i18n/fr_CH.po +++ b/mass_mailing_event/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/gl.po b/mass_mailing_event/i18n/gl.po index 1ee1c692..a477e2d3 100644 --- a/mass_mailing_event/i18n/gl.po +++ b/mass_mailing_event/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/gl_ES.po b/mass_mailing_event/i18n/gl_ES.po index 55c32722..39a4de26 100644 --- a/mass_mailing_event/i18n/gl_ES.po +++ b/mass_mailing_event/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/he.po b/mass_mailing_event/i18n/he.po index b897ebc3..c9d0e4c7 100644 --- a/mass_mailing_event/i18n/he.po +++ b/mass_mailing_event/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: 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=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/hr.po b/mass_mailing_event/i18n/hr.po index 0412428e..0d1e5d01 100644 --- a/mass_mailing_event/i18n/hr.po +++ b/mass_mailing_event/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/hr_HR.po b/mass_mailing_event/i18n/hr_HR.po index b8842108..8183fbb9 100644 --- a/mass_mailing_event/i18n/hr_HR.po +++ b/mass_mailing_event/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/hu.po b/mass_mailing_event/i18n/hu.po index dabc288e..df271189 100644 --- a/mass_mailing_event/i18n/hu.po +++ b/mass_mailing_event/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/id.po b/mass_mailing_event/i18n/id.po index cc96aa8b..b27404cf 100644 --- a/mass_mailing_event/i18n/id.po +++ b/mass_mailing_event/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/it.po b/mass_mailing_event/i18n/it.po index 49352d0a..4ab825f0 100644 --- a/mass_mailing_event/i18n/it.po +++ b/mass_mailing_event/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/ja.po b/mass_mailing_event/i18n/ja.po index 27513c9e..9e657be3 100644 --- a/mass_mailing_event/i18n/ja.po +++ b/mass_mailing_event/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/ko.po b/mass_mailing_event/i18n/ko.po index c8a1fd6f..737ffaea 100644 --- a/mass_mailing_event/i18n/ko.po +++ b/mass_mailing_event/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/lt.po b/mass_mailing_event/i18n/lt.po index b1f359de..17f9821a 100644 --- a/mass_mailing_event/i18n/lt.po +++ b/mass_mailing_event/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/lt_LT.po b/mass_mailing_event/i18n/lt_LT.po index c3af4e70..7010c108 100644 --- a/mass_mailing_event/i18n/lt_LT.po +++ b/mass_mailing_event/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/lv.po b/mass_mailing_event/i18n/lv.po index 7546864e..7e426689 100644 --- a/mass_mailing_event/i18n/lv.po +++ b/mass_mailing_event/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/mass_mailing_event.pot b/mass_mailing_event/i18n/mass_mailing_event.pot new file mode 100644 index 00000000..53638ecc --- /dev/null +++ b/mass_mailing_event/i18n/mass_mailing_event.pot @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_event +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_event +#: model:ir.model,name:mass_mailing_event.model_event_registration +msgid "Attendee" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_code +msgid "Code" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_create_uid +msgid "Created by" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_create_date +msgid "Created on" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_display_name +msgid "Display Name" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_mail_mass_mailing_event_id +msgid "Event related" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_mail_mass_mailing_exclude_event_state_ids +msgid "Exclude" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_id +msgid "ID" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model,name:mass_mailing_event.model_mail_mass_mailing +msgid "Mass Mailing" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model,name:mass_mailing_event.model_mail_mass_mailing_contact +msgid "Mass Mailing Contact" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model.fields,field_description:mass_mailing_event.field_event_registration_state_name +msgid "Name" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model,name:mass_mailing_event.model_res_partner +msgid "Partner" +msgstr "" + +#. module: mass_mailing_event +#: model:ir.model,name:mass_mailing_event.model_event_registration_state +msgid "event.registration.state" +msgstr "" + diff --git a/mass_mailing_event/i18n/mk.po b/mass_mailing_event/i18n/mk.po index 3cc795a4..c129818c 100644 --- a/mass_mailing_event/i18n/mk.po +++ b/mass_mailing_event/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/mn.po b/mass_mailing_event/i18n/mn.po index ce5ae511..28de001e 100644 --- a/mass_mailing_event/i18n/mn.po +++ b/mass_mailing_event/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/nb.po b/mass_mailing_event/i18n/nb.po index 2a63bff9..18db4e92 100644 --- a/mass_mailing_event/i18n/nb.po +++ b/mass_mailing_event/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/nb_NO.po b/mass_mailing_event/i18n/nb_NO.po index ed438461..0473242a 100644 --- a/mass_mailing_event/i18n/nb_NO.po +++ b/mass_mailing_event/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/nl.po b/mass_mailing_event/i18n/nl.po index 0416b605..c20d99a3 100644 --- a/mass_mailing_event/i18n/nl.po +++ b/mass_mailing_event/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/nl_BE.po b/mass_mailing_event/i18n/nl_BE.po index 93b2e372..f0f9a4d8 100644 --- a/mass_mailing_event/i18n/nl_BE.po +++ b/mass_mailing_event/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/nl_NL.po b/mass_mailing_event/i18n/nl_NL.po index 53092098..ddceb191 100644 --- a/mass_mailing_event/i18n/nl_NL.po +++ b/mass_mailing_event/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # Peter Hageman , 2017 # OCA Transbot , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/pl.po b/mass_mailing_event/i18n/pl.po index 1a50201f..6966e8a6 100644 --- a/mass_mailing_event/i18n/pl.po +++ b/mass_mailing_event/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/pt.po b/mass_mailing_event/i18n/pt.po index c99be99d..756032b8 100644 --- a/mass_mailing_event/i18n/pt.po +++ b/mass_mailing_event/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:18+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/pt_BR.po b/mass_mailing_event/i18n/pt_BR.po index 78d9841a..95fe6fa3 100644 --- a/mass_mailing_event/i18n/pt_BR.po +++ b/mass_mailing_event/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/pt_PT.po b/mass_mailing_event/i18n/pt_PT.po index 7c71fbdf..4224160e 100644 --- a/mass_mailing_event/i18n/pt_PT.po +++ b/mass_mailing_event/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/ro.po b/mass_mailing_event/i18n/ro.po index 89380b00..5bd237dc 100644 --- a/mass_mailing_event/i18n/ro.po +++ b/mass_mailing_event/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/ru.po b/mass_mailing_event/i18n/ru.po index cb3c2415..2d2abcee 100644 --- a/mass_mailing_event/i18n/ru.po +++ b/mass_mailing_event/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/sk.po b/mass_mailing_event/i18n/sk.po index 43f91bcc..5082212b 100644 --- a/mass_mailing_event/i18n/sk.po +++ b/mass_mailing_event/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/sl.po b/mass_mailing_event/i18n/sl.po index 1a11fdec..78d768db 100644 --- a/mass_mailing_event/i18n/sl.po +++ b/mass_mailing_event/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/sr.po b/mass_mailing_event/i18n/sr.po index 77793715..9a4cc8a6 100644 --- a/mass_mailing_event/i18n/sr.po +++ b/mass_mailing_event/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: 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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/sr@latin.po b/mass_mailing_event/i18n/sr@latin.po index 9a4a304e..fd67ffba 100644 --- a/mass_mailing_event/i18n/sr@latin.po +++ b/mass_mailing_event/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/sv.po b/mass_mailing_event/i18n/sv.po index a5df0f64..79ecf472 100644 --- a/mass_mailing_event/i18n/sv.po +++ b/mass_mailing_event/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/th.po b/mass_mailing_event/i18n/th.po index 773cf71a..040f7ce6 100644 --- a/mass_mailing_event/i18n/th.po +++ b/mass_mailing_event/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/tr.po b/mass_mailing_event/i18n/tr.po index bd42a37b..110f6c76 100644 --- a/mass_mailing_event/i18n/tr.po +++ b/mass_mailing_event/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/tr_TR.po b/mass_mailing_event/i18n/tr_TR.po index 81ced13d..ebc36a03 100644 --- a/mass_mailing_event/i18n/tr_TR.po +++ b/mass_mailing_event/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/uk.po b/mass_mailing_event/i18n/uk.po index dc714b1b..91b35508 100644 --- a/mass_mailing_event/i18n/uk.po +++ b/mass_mailing_event/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: mass_mailing_event #: model:ir.model,name:mass_mailing_event.model_event_registration diff --git a/mass_mailing_event/i18n/vi.po b/mass_mailing_event/i18n/vi.po index 37c450c2..4934a034 100644 --- a/mass_mailing_event/i18n/vi.po +++ b/mass_mailing_event/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/vi_VN.po b/mass_mailing_event/i18n/vi_VN.po index 186cef4d..829451c5 100644 --- a/mass_mailing_event/i18n/vi_VN.po +++ b/mass_mailing_event/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_event diff --git a/mass_mailing_event/i18n/zh_CN.po b/mass_mailing_event/i18n/zh_CN.po index 62f41fff..885767c5 100644 --- a/mass_mailing_event/i18n/zh_CN.po +++ b/mass_mailing_event/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mass_mailing_event diff --git a/mass_mailing_event/i18n/zh_TW.po b/mass_mailing_event/i18n/zh_TW.po index 4095fb2b..c75712af 100644 --- a/mass_mailing_event/i18n/zh_TW.po +++ b/mass_mailing_event/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_event -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mass_mailing_event From e8085647ba717f22b4c106983f500e94f02ba4da Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 21:59:59 +0000 Subject: [PATCH 42/86] [UPD] Update mass_mailing_list_dynamic.pot --- mass_mailing_list_dynamic/i18n/am.po | 23 ++- mass_mailing_list_dynamic/i18n/ar.po | 26 ++- mass_mailing_list_dynamic/i18n/bg.po | 23 ++- mass_mailing_list_dynamic/i18n/bs.po | 26 ++- mass_mailing_list_dynamic/i18n/ca.po | 23 ++- mass_mailing_list_dynamic/i18n/cs.po | 23 ++- mass_mailing_list_dynamic/i18n/da.po | 23 ++- mass_mailing_list_dynamic/i18n/de.po | 23 ++- mass_mailing_list_dynamic/i18n/el_GR.po | 26 ++- mass_mailing_list_dynamic/i18n/en_GB.po | 26 ++- mass_mailing_list_dynamic/i18n/es.po | 23 ++- mass_mailing_list_dynamic/i18n/es_AR.po | 26 ++- mass_mailing_list_dynamic/i18n/es_CL.po | 26 ++- mass_mailing_list_dynamic/i18n/es_CO.po | 26 ++- mass_mailing_list_dynamic/i18n/es_CR.po | 26 ++- mass_mailing_list_dynamic/i18n/es_DO.po | 26 ++- mass_mailing_list_dynamic/i18n/es_EC.po | 26 ++- mass_mailing_list_dynamic/i18n/es_ES.po | 26 ++- mass_mailing_list_dynamic/i18n/es_MX.po | 26 ++- mass_mailing_list_dynamic/i18n/es_PE.po | 26 ++- mass_mailing_list_dynamic/i18n/es_PY.po | 26 ++- mass_mailing_list_dynamic/i18n/es_VE.po | 26 ++- mass_mailing_list_dynamic/i18n/et.po | 23 ++- mass_mailing_list_dynamic/i18n/eu.po | 23 ++- mass_mailing_list_dynamic/i18n/fa.po | 23 ++- mass_mailing_list_dynamic/i18n/fi.po | 23 ++- mass_mailing_list_dynamic/i18n/fr.po | 23 ++- mass_mailing_list_dynamic/i18n/fr_CA.po | 26 ++- mass_mailing_list_dynamic/i18n/fr_CH.po | 26 ++- mass_mailing_list_dynamic/i18n/gl.po | 23 ++- mass_mailing_list_dynamic/i18n/gl_ES.po | 26 ++- mass_mailing_list_dynamic/i18n/he.po | 23 ++- mass_mailing_list_dynamic/i18n/hr.po | 26 ++- mass_mailing_list_dynamic/i18n/hr_HR.po | 29 ++- mass_mailing_list_dynamic/i18n/hu.po | 23 ++- mass_mailing_list_dynamic/i18n/id.po | 23 ++- mass_mailing_list_dynamic/i18n/it.po | 23 ++- mass_mailing_list_dynamic/i18n/ja.po | 23 ++- mass_mailing_list_dynamic/i18n/ko.po | 23 ++- mass_mailing_list_dynamic/i18n/lt.po | 26 ++- mass_mailing_list_dynamic/i18n/lt_LT.po | 29 ++- mass_mailing_list_dynamic/i18n/lv.po | 26 ++- .../i18n/mass_mailing_list_dynamic.pot | 168 ++++++++++++++++++ mass_mailing_list_dynamic/i18n/mk.po | 23 ++- mass_mailing_list_dynamic/i18n/mn.po | 23 ++- mass_mailing_list_dynamic/i18n/nb.po | 26 ++- mass_mailing_list_dynamic/i18n/nb_NO.po | 26 ++- mass_mailing_list_dynamic/i18n/nl.po | 23 ++- mass_mailing_list_dynamic/i18n/nl_BE.po | 26 ++- mass_mailing_list_dynamic/i18n/nl_NL.po | 26 ++- mass_mailing_list_dynamic/i18n/pl.po | 27 ++- mass_mailing_list_dynamic/i18n/pt.po | 23 ++- mass_mailing_list_dynamic/i18n/pt_BR.po | 26 ++- mass_mailing_list_dynamic/i18n/pt_PT.po | 26 ++- mass_mailing_list_dynamic/i18n/ro.po | 26 ++- mass_mailing_list_dynamic/i18n/ru.po | 27 ++- mass_mailing_list_dynamic/i18n/sk.po | 23 ++- mass_mailing_list_dynamic/i18n/sl.po | 26 ++- mass_mailing_list_dynamic/i18n/sr.po | 26 ++- mass_mailing_list_dynamic/i18n/sr@latin.po | 29 ++- mass_mailing_list_dynamic/i18n/sv.po | 23 ++- mass_mailing_list_dynamic/i18n/th.po | 23 ++- mass_mailing_list_dynamic/i18n/tr.po | 23 ++- mass_mailing_list_dynamic/i18n/tr_TR.po | 26 ++- mass_mailing_list_dynamic/i18n/uk.po | 26 ++- mass_mailing_list_dynamic/i18n/vi.po | 23 ++- mass_mailing_list_dynamic/i18n/vi_VN.po | 26 ++- mass_mailing_list_dynamic/i18n/zh_CN.po | 26 ++- mass_mailing_list_dynamic/i18n/zh_TW.po | 26 ++- 69 files changed, 1344 insertions(+), 519 deletions(-) create mode 100644 mass_mailing_list_dynamic/i18n/mass_mailing_list_dynamic.pot diff --git a/mass_mailing_list_dynamic/i18n/am.po b/mass_mailing_list_dynamic/i18n/am.po index 58470ae5..f4a15dd2 100644 --- a/mass_mailing_list_dynamic/i18n/am.po +++ b/mass_mailing_list_dynamic/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ar.po b/mass_mailing_list_dynamic/i18n/ar.po index a03b6183..1c94c35d 100644 --- a/mass_mailing_list_dynamic/i18n/ar.po +++ b/mass_mailing_list_dynamic/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "المعرف" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/bg.po b/mass_mailing_list_dynamic/i18n/bg.po index 25dc229f..0e2bb00e 100644 --- a/mass_mailing_list_dynamic/i18n/bg.po +++ b/mass_mailing_list_dynamic/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/bs.po b/mass_mailing_list_dynamic/i18n/bs.po index 63656673..d988bb3f 100644 --- a/mass_mailing_list_dynamic/i18n/bs.po +++ b/mass_mailing_list_dynamic/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ca.po b/mass_mailing_list_dynamic/i18n/ca.po index 42d272eb..80afe495 100644 --- a/mass_mailing_list_dynamic/i18n/ca.po +++ b/mass_mailing_list_dynamic/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/cs.po b/mass_mailing_list_dynamic/i18n/cs.po index ce92adde..e77594d3 100644 --- a/mass_mailing_list_dynamic/i18n/cs.po +++ b/mass_mailing_list_dynamic/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/da.po b/mass_mailing_list_dynamic/i18n/da.po index 29bb4994..6397c1aa 100644 --- a/mass_mailing_list_dynamic/i18n/da.po +++ b/mass_mailing_list_dynamic/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "Id" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/de.po b/mass_mailing_list_dynamic/i18n/de.po index 1ba6318c..fc8e9fcb 100644 --- a/mass_mailing_list_dynamic/i18n/de.po +++ b/mass_mailing_list_dynamic/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/el_GR.po b/mass_mailing_list_dynamic/i18n/el_GR.po index 853c90f4..60f6670a 100644 --- a/mass_mailing_list_dynamic/i18n/el_GR.po +++ b/mass_mailing_list_dynamic/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "Κωδικός" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/en_GB.po b/mass_mailing_list_dynamic/i18n/en_GB.po index 81e265b3..83dd6311 100644 --- a/mass_mailing_list_dynamic/i18n/en_GB.po +++ b/mass_mailing_list_dynamic/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es.po b/mass_mailing_list_dynamic/i18n/es.po index 017a86fd..7e8f09ea 100644 --- a/mass_mailing_list_dynamic/i18n/es.po +++ b/mass_mailing_list_dynamic/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 # enjolras , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2018\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -29,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -44,7 +44,7 @@ msgid "Cancel" msgstr "Cancelar" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -54,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -93,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_AR.po b/mass_mailing_list_dynamic/i18n/es_AR.po index 3f729173..6c639191 100644 --- a/mass_mailing_list_dynamic/i18n/es_AR.po +++ b/mass_mailing_list_dynamic/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_CL.po b/mass_mailing_list_dynamic/i18n/es_CL.po index 47a0ce55..af15003d 100644 --- a/mass_mailing_list_dynamic/i18n/es_CL.po +++ b/mass_mailing_list_dynamic/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID (identificación)" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_CO.po b/mass_mailing_list_dynamic/i18n/es_CO.po index 8e59e60f..4250fc57 100644 --- a/mass_mailing_list_dynamic/i18n/es_CO.po +++ b/mass_mailing_list_dynamic/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_CR.po b/mass_mailing_list_dynamic/i18n/es_CR.po index 83273a4c..dccee156 100644 --- a/mass_mailing_list_dynamic/i18n/es_CR.po +++ b/mass_mailing_list_dynamic/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_DO.po b/mass_mailing_list_dynamic/i18n/es_DO.po index 565df0be..a5714369 100644 --- a/mass_mailing_list_dynamic/i18n/es_DO.po +++ b/mass_mailing_list_dynamic/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_EC.po b/mass_mailing_list_dynamic/i18n/es_EC.po index 8dec49f3..4d29cf84 100644 --- a/mass_mailing_list_dynamic/i18n/es_EC.po +++ b/mass_mailing_list_dynamic/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID (identificación)" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_ES.po b/mass_mailing_list_dynamic/i18n/es_ES.po index 1c142f60..d937ee6e 100644 --- a/mass_mailing_list_dynamic/i18n/es_ES.po +++ b/mass_mailing_list_dynamic/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_MX.po b/mass_mailing_list_dynamic/i18n/es_MX.po index 3a4d7a35..6bef6885 100644 --- a/mass_mailing_list_dynamic/i18n/es_MX.po +++ b/mass_mailing_list_dynamic/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_PE.po b/mass_mailing_list_dynamic/i18n/es_PE.po index 76821db8..d06d825d 100644 --- a/mass_mailing_list_dynamic/i18n/es_PE.po +++ b/mass_mailing_list_dynamic/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_PY.po b/mass_mailing_list_dynamic/i18n/es_PY.po index 83f37a78..b0819f9f 100644 --- a/mass_mailing_list_dynamic/i18n/es_PY.po +++ b/mass_mailing_list_dynamic/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/es_VE.po b/mass_mailing_list_dynamic/i18n/es_VE.po index 5eff6e2f..86bd15f2 100644 --- a/mass_mailing_list_dynamic/i18n/es_VE.po +++ b/mass_mailing_list_dynamic/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/et.po b/mass_mailing_list_dynamic/i18n/et.po index 3d83c7c5..d1f96a6d 100644 --- a/mass_mailing_list_dynamic/i18n/et.po +++ b/mass_mailing_list_dynamic/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/eu.po b/mass_mailing_list_dynamic/i18n/eu.po index aaa01209..7aab6f86 100644 --- a/mass_mailing_list_dynamic/i18n/eu.po +++ b/mass_mailing_list_dynamic/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/fa.po b/mass_mailing_list_dynamic/i18n/fa.po index b7b4072b..e96c04db 100644 --- a/mass_mailing_list_dynamic/i18n/fa.po +++ b/mass_mailing_list_dynamic/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: 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=1; plural=0;\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "شناسه" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/fi.po b/mass_mailing_list_dynamic/i18n/fi.po index 1b663247..e89a8c65 100644 --- a/mass_mailing_list_dynamic/i18n/fi.po +++ b/mass_mailing_list_dynamic/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/fr.po b/mass_mailing_list_dynamic/i18n/fr.po index 29123294..b85952d5 100644 --- a/mass_mailing_list_dynamic/i18n/fr.po +++ b/mass_mailing_list_dynamic/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/fr_CA.po b/mass_mailing_list_dynamic/i18n/fr_CA.po index 5dd110ed..06f01e3b 100644 --- a/mass_mailing_list_dynamic/i18n/fr_CA.po +++ b/mass_mailing_list_dynamic/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "Identifiant" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/fr_CH.po b/mass_mailing_list_dynamic/i18n/fr_CH.po index 69432cfe..c1003e80 100644 --- a/mass_mailing_list_dynamic/i18n/fr_CH.po +++ b/mass_mailing_list_dynamic/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/gl.po b/mass_mailing_list_dynamic/i18n/gl.po index 41cd2e08..70fb8d34 100644 --- a/mass_mailing_list_dynamic/i18n/gl.po +++ b/mass_mailing_list_dynamic/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/gl_ES.po b/mass_mailing_list_dynamic/i18n/gl_ES.po index 8d4c58bb..b1c24b2f 100644 --- a/mass_mailing_list_dynamic/i18n/gl_ES.po +++ b/mass_mailing_list_dynamic/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/he.po b/mass_mailing_list_dynamic/i18n/he.po index 38a7895b..9fe14e63 100644 --- a/mass_mailing_list_dynamic/i18n/he.po +++ b/mass_mailing_list_dynamic/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: 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=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "מזהה" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/hr.po b/mass_mailing_list_dynamic/i18n/hr.po index 174911cb..95371e5e 100644 --- a/mass_mailing_list_dynamic/i18n/hr.po +++ b/mass_mailing_list_dynamic/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/hr_HR.po b/mass_mailing_list_dynamic/i18n/hr_HR.po index e748a195..64644f3c 100644 --- a/mass_mailing_list_dynamic/i18n/hr_HR.po +++ b/mass_mailing_list_dynamic/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/hu.po b/mass_mailing_list_dynamic/i18n/hu.po index ecef0ad2..360c3637 100644 --- a/mass_mailing_list_dynamic/i18n/hu.po +++ b/mass_mailing_list_dynamic/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/id.po b/mass_mailing_list_dynamic/i18n/id.po index 40c69295..e88bb942 100644 --- a/mass_mailing_list_dynamic/i18n/id.po +++ b/mass_mailing_list_dynamic/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/it.po b/mass_mailing_list_dynamic/i18n/it.po index e6dba28d..28a10d0f 100644 --- a/mass_mailing_list_dynamic/i18n/it.po +++ b/mass_mailing_list_dynamic/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ja.po b/mass_mailing_list_dynamic/i18n/ja.po index bffc806d..2ecdfa77 100644 --- a/mass_mailing_list_dynamic/i18n/ja.po +++ b/mass_mailing_list_dynamic/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ko.po b/mass_mailing_list_dynamic/i18n/ko.po index 8f38d005..7c5e4c28 100644 --- a/mass_mailing_list_dynamic/i18n/ko.po +++ b/mass_mailing_list_dynamic/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/lt.po b/mass_mailing_list_dynamic/i18n/lt.po index f2390ed6..c1fdcefc 100644 --- a/mass_mailing_list_dynamic/i18n/lt.po +++ b/mass_mailing_list_dynamic/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/lt_LT.po b/mass_mailing_list_dynamic/i18n/lt_LT.po index 3547fe8b..0f4425c4 100644 --- a/mass_mailing_list_dynamic/i18n/lt_LT.po +++ b/mass_mailing_list_dynamic/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/lv.po b/mass_mailing_list_dynamic/i18n/lv.po index dbf14d91..6c206e22 100644 --- a/mass_mailing_list_dynamic/i18n/lv.po +++ b/mass_mailing_list_dynamic/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/mass_mailing_list_dynamic.pot b/mass_mailing_list_dynamic/i18n/mass_mailing_list_dynamic.pot new file mode 100644 index 00000000..28bb7fda --- /dev/null +++ b/mass_mailing_list_dynamic/i18n/mass_mailing_list_dynamic.pot @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_list_dynamic +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_list_dynamic +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form +msgid " If you want to remove contacts from a dynamic list, just set them as Opt Out." +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form +msgid " You cannot make manual editions of contacts in fully synchronized lists." +msgstr "" + +#. module: mass_mailing_list_dynamic +#: selection:mail.mass_mailing.list,sync_method:0 +msgid "Add and remove records as needed" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_load_filter_form +msgid "Cancel" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 +#, python-format +msgid "Cannot edit manually contacts in a fully synchronized list. Change its sync method or execute a manual sync instead." +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method +msgid "Choose the syncronization method for this list if you want to make it dynamic" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_create_uid +msgid "Created by" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_create_date +msgid "Created on" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_display_name +msgid "Display Name" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_dynamic +msgid "Dynamic" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form +msgid "Dynamic list" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_domain +msgid "Filter partners to sync in this list" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_filter_id +msgid "Filter to load" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id +msgid "ID" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.actions.act_window,name:mass_mailing_list_dynamic.action_mail_mass_mailing_load_filter +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_load_filter_form +msgid "Load filter" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model,name:mass_mailing_list_dynamic.model_mail_mass_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model,name:mass_mailing_list_dynamic.model_mail_mass_mailing +msgid "Mass Mailing" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model,name:mass_mailing_list_dynamic.model_mail_mass_mailing_contact +msgid "Mass Mailing Contact" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: selection:mail.mass_mailing.list,sync_method:0 +msgid "Only add new records" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model,name:mass_mailing_list_dynamic.model_res_partner +msgid "Partner" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_dynamic +msgid "Set this list as dynamic, to make it autosynchronized with partners from a given criteria." +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method +msgid "Sync method" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form +msgid "Sync now" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_domain +msgid "Synchronization critera" +msgstr "" + +#. module: mass_mailing_list_dynamic +#: model:ir.model,name:mass_mailing_list_dynamic.model_mail_mass_mailing_load_filter +msgid "mail.mass_mailing.load.filter" +msgstr "" + diff --git a/mass_mailing_list_dynamic/i18n/mk.po b/mass_mailing_list_dynamic/i18n/mk.po index 1c89a267..40ea8766 100644 --- a/mass_mailing_list_dynamic/i18n/mk.po +++ b/mass_mailing_list_dynamic/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/mn.po b/mass_mailing_list_dynamic/i18n/mn.po index 568cf301..0b6d0f03 100644 --- a/mass_mailing_list_dynamic/i18n/mn.po +++ b/mass_mailing_list_dynamic/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/nb.po b/mass_mailing_list_dynamic/i18n/nb.po index 6b436d6e..e6bff736 100644 --- a/mass_mailing_list_dynamic/i18n/nb.po +++ b/mass_mailing_list_dynamic/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/nb_NO.po b/mass_mailing_list_dynamic/i18n/nb_NO.po index c714956d..95279d45 100644 --- a/mass_mailing_list_dynamic/i18n/nb_NO.po +++ b/mass_mailing_list_dynamic/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/nl.po b/mass_mailing_list_dynamic/i18n/nl.po index 2f9044d2..7213a407 100644 --- a/mass_mailing_list_dynamic/i18n/nl.po +++ b/mass_mailing_list_dynamic/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/nl_BE.po b/mass_mailing_list_dynamic/i18n/nl_BE.po index 0993affc..294d6781 100644 --- a/mass_mailing_list_dynamic/i18n/nl_BE.po +++ b/mass_mailing_list_dynamic/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/nl_NL.po b/mass_mailing_list_dynamic/i18n/nl_NL.po index 5a464321..771561f0 100644 --- a/mass_mailing_list_dynamic/i18n/nl_NL.po +++ b/mass_mailing_list_dynamic/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 # Peter Hageman , 2018 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Peter Hageman , 2018\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -29,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -44,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -54,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -93,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/pl.po b/mass_mailing_list_dynamic/i18n/pl.po index 70873141..9ce192fe 100644 --- a/mass_mailing_list_dynamic/i18n/pl.po +++ b/mass_mailing_list_dynamic/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/pt.po b/mass_mailing_list_dynamic/i18n/pt.po index 1fc0b0c2..ef1814c3 100644 --- a/mass_mailing_list_dynamic/i18n/pt.po +++ b/mass_mailing_list_dynamic/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # Pedro Castro Silva , 2017 # OCA Transbot , 2018 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -29,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -44,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -54,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -93,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/pt_BR.po b/mass_mailing_list_dynamic/i18n/pt_BR.po index 1ef49f33..ecf0fb0f 100644 --- a/mass_mailing_list_dynamic/i18n/pt_BR.po +++ b/mass_mailing_list_dynamic/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "Identificação" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/pt_PT.po b/mass_mailing_list_dynamic/i18n/pt_PT.po index 7bcab263..e20c1f4b 100644 --- a/mass_mailing_list_dynamic/i18n/pt_PT.po +++ b/mass_mailing_list_dynamic/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ro.po b/mass_mailing_list_dynamic/i18n/ro.po index fa261ce3..63f5edd3 100644 --- a/mass_mailing_list_dynamic/i18n/ro.po +++ b/mass_mailing_list_dynamic/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/ru.po b/mass_mailing_list_dynamic/i18n/ru.po index 202a4bb0..79aeeb41 100644 --- a/mass_mailing_list_dynamic/i18n/ru.po +++ b/mass_mailing_list_dynamic/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/sk.po b/mass_mailing_list_dynamic/i18n/sk.po index b2d542c0..7eae9a9c 100644 --- a/mass_mailing_list_dynamic/i18n/sk.po +++ b/mass_mailing_list_dynamic/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/sl.po b/mass_mailing_list_dynamic/i18n/sl.po index 37b7d5cf..ad323e5a 100644 --- a/mass_mailing_list_dynamic/i18n/sl.po +++ b/mass_mailing_list_dynamic/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/sr.po b/mass_mailing_list_dynamic/i18n/sr.po index 74a4c5ef..9e8f4f87 100644 --- a/mass_mailing_list_dynamic/i18n/sr.po +++ b/mass_mailing_list_dynamic/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: 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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/sr@latin.po b/mass_mailing_list_dynamic/i18n/sr@latin.po index d2fe03f1..d1eb61ed 100644 --- a/mass_mailing_list_dynamic/i18n/sr@latin.po +++ b/mass_mailing_list_dynamic/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +30,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +45,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +55,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +93,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/sv.po b/mass_mailing_list_dynamic/i18n/sv.po index 9352ef68..9e486f6a 100644 --- a/mass_mailing_list_dynamic/i18n/sv.po +++ b/mass_mailing_list_dynamic/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/th.po b/mass_mailing_list_dynamic/i18n/th.po index 8268d0df..f4f2a97f 100644 --- a/mass_mailing_list_dynamic/i18n/th.po +++ b/mass_mailing_list_dynamic/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "รหัส" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/tr.po b/mass_mailing_list_dynamic/i18n/tr.po index 19158b91..d67d2fd8 100644 --- a/mass_mailing_list_dynamic/i18n/tr.po +++ b/mass_mailing_list_dynamic/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/tr_TR.po b/mass_mailing_list_dynamic/i18n/tr_TR.po index 2ca24638..52760e72 100644 --- a/mass_mailing_list_dynamic/i18n/tr_TR.po +++ b/mass_mailing_list_dynamic/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "Kimlik" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/uk.po b/mass_mailing_list_dynamic/i18n/uk.po index 6384944c..3ac0ba6f 100644 --- a/mass_mailing_list_dynamic/i18n/uk.po +++ b/mass_mailing_list_dynamic/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/vi.po b/mass_mailing_list_dynamic/i18n/vi.po index 1b804dce..4004c1d6 100644 --- a/mass_mailing_list_dynamic/i18n/vi.po +++ b/mass_mailing_list_dynamic/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +28,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +43,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +53,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +91,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/vi_VN.po b/mass_mailing_list_dynamic/i18n/vi_VN.po index 9d675d2c..3fac826c 100644 --- a/mass_mailing_list_dynamic/i18n/vi_VN.po +++ b/mass_mailing_list_dynamic/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/zh_CN.po b/mass_mailing_list_dynamic/i18n/zh_CN.po index 1dcf2e0b..12f62e2e 100644 --- a/mass_mailing_list_dynamic/i18n/zh_CN.po +++ b/mass_mailing_list_dynamic/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "ID" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" diff --git a/mass_mailing_list_dynamic/i18n/zh_TW.po b/mass_mailing_list_dynamic/i18n/zh_TW.po index f511a706..a1f8585f 100644 --- a/mass_mailing_list_dynamic/i18n/zh_TW.po +++ b/mass_mailing_list_dynamic/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_list_dynamic -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-02-26 01:46+0000\n" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: OCA Transbot , 2018\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mass_mailing_list_dynamic @@ -28,8 +29,8 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.ui.view,arch_db:mass_mailing_list_dynamic.view_mail_mass_mailing_list_form msgid "" -" You cannot make manual editions of contacts" -" in fully synchronized lists." +" You cannot make manual editions of contacts " +"in fully synchronized lists." msgstr "" #. module: mass_mailing_list_dynamic @@ -43,7 +44,7 @@ msgid "Cancel" msgstr "" #. module: mass_mailing_list_dynamic -#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:18 +#: code:addons/mass_mailing_list_dynamic/models/mail_mass_mailing_contact.py:19 #, python-format msgid "" "Cannot edit manually contacts in a fully synchronized list. Change its sync " @@ -53,8 +54,7 @@ msgstr "" #. module: mass_mailing_list_dynamic #: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_sync_method msgid "" -"Choose the syncronization method for this list if you want to make it " -"dynamic" +"Choose the syncronization method for this list if you want to make it dynamic" msgstr "" #. module: mass_mailing_list_dynamic @@ -92,11 +92,21 @@ msgstr "" msgid "Filter to load" msgstr "" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,help:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Helper field to make the user aware of unsynced changes" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter_id msgid "ID" msgstr "編號" +#. module: mass_mailing_list_dynamic +#: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_list_is_synced +msgid "Is synced" +msgstr "" + #. module: mass_mailing_list_dynamic #: model:ir.model.fields,field_description:mass_mailing_list_dynamic.field_mail_mass_mailing_load_filter___last_update msgid "Last Modified on" From 1466ea0c2622580315ca35bd10bc05b6080b7bc9 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 22:00:00 +0000 Subject: [PATCH 43/86] [UPD] Update mass_mailing_partner.pot --- mass_mailing_partner/i18n/am.po | 4 +- mass_mailing_partner/i18n/ar.po | 7 +- mass_mailing_partner/i18n/bg.po | 4 +- mass_mailing_partner/i18n/bs.po | 7 +- mass_mailing_partner/i18n/ca.po | 4 +- mass_mailing_partner/i18n/ca_ES.po | 73 ++++---- mass_mailing_partner/i18n/cs.po | 4 +- mass_mailing_partner/i18n/da.po | 4 +- mass_mailing_partner/i18n/de.po | 4 +- mass_mailing_partner/i18n/el_GR.po | 7 +- mass_mailing_partner/i18n/en_AU.po | 73 ++++---- mass_mailing_partner/i18n/en_GB.po | 7 +- mass_mailing_partner/i18n/es.po | 4 +- mass_mailing_partner/i18n/es_AR.po | 7 +- mass_mailing_partner/i18n/es_CL.po | 7 +- mass_mailing_partner/i18n/es_CO.po | 7 +- mass_mailing_partner/i18n/es_CR.po | 7 +- mass_mailing_partner/i18n/es_DO.po | 7 +- mass_mailing_partner/i18n/es_EC.po | 7 +- mass_mailing_partner/i18n/es_ES.po | 7 +- mass_mailing_partner/i18n/es_MX.po | 7 +- mass_mailing_partner/i18n/es_PE.po | 7 +- mass_mailing_partner/i18n/es_PY.po | 7 +- mass_mailing_partner/i18n/es_VE.po | 7 +- mass_mailing_partner/i18n/et.po | 4 +- mass_mailing_partner/i18n/eu.po | 4 +- mass_mailing_partner/i18n/fa.po | 4 +- mass_mailing_partner/i18n/fi.po | 4 +- mass_mailing_partner/i18n/fr.po | 4 +- mass_mailing_partner/i18n/fr_CA.po | 7 +- mass_mailing_partner/i18n/fr_CH.po | 7 +- mass_mailing_partner/i18n/fr_FR.po | 73 ++++---- mass_mailing_partner/i18n/gl.po | 4 +- mass_mailing_partner/i18n/gl_ES.po | 7 +- mass_mailing_partner/i18n/he.po | 4 +- mass_mailing_partner/i18n/hi.po | 73 ++++---- mass_mailing_partner/i18n/hr.po | 7 +- mass_mailing_partner/i18n/hr_HR.po | 10 +- mass_mailing_partner/i18n/hu.po | 4 +- mass_mailing_partner/i18n/id.po | 4 +- mass_mailing_partner/i18n/it.po | 4 +- mass_mailing_partner/i18n/ja.po | 4 +- mass_mailing_partner/i18n/ko.po | 4 +- mass_mailing_partner/i18n/lo.po | 70 ++++---- mass_mailing_partner/i18n/lt.po | 7 +- mass_mailing_partner/i18n/lt_LT.po | 10 +- mass_mailing_partner/i18n/lv.po | 7 +- .../i18n/mass_mailing_partner.pot | 157 ++++++++++++++++++ mass_mailing_partner/i18n/mk.po | 4 +- mass_mailing_partner/i18n/mn.po | 4 +- mass_mailing_partner/i18n/nb.po | 7 +- mass_mailing_partner/i18n/nb_NO.po | 7 +- mass_mailing_partner/i18n/nl.po | 4 +- mass_mailing_partner/i18n/nl_BE.po | 7 +- mass_mailing_partner/i18n/nl_NL.po | 7 +- mass_mailing_partner/i18n/pl.po | 8 +- mass_mailing_partner/i18n/pt.po | 4 +- mass_mailing_partner/i18n/pt_BR.po | 7 +- mass_mailing_partner/i18n/pt_PT.po | 7 +- mass_mailing_partner/i18n/ro.po | 7 +- mass_mailing_partner/i18n/ru.po | 8 +- mass_mailing_partner/i18n/sk.po | 4 +- mass_mailing_partner/i18n/sl.po | 7 +- mass_mailing_partner/i18n/sr.po | 7 +- mass_mailing_partner/i18n/sr@latin.po | 10 +- mass_mailing_partner/i18n/sv.po | 4 +- mass_mailing_partner/i18n/th.po | 4 +- mass_mailing_partner/i18n/tr.po | 4 +- mass_mailing_partner/i18n/tr_TR.po | 7 +- mass_mailing_partner/i18n/uk.po | 7 +- mass_mailing_partner/i18n/vi.po | 4 +- mass_mailing_partner/i18n/vi_VN.po | 7 +- mass_mailing_partner/i18n/zh_CN.po | 7 +- mass_mailing_partner/i18n/zh_TW.po | 7 +- 74 files changed, 549 insertions(+), 373 deletions(-) create mode 100644 mass_mailing_partner/i18n/mass_mailing_partner.pot diff --git a/mass_mailing_partner/i18n/am.po b/mass_mailing_partner/i18n/am.po index a27d2bfa..695798e3 100644 --- a/mass_mailing_partner/i18n/am.po +++ b/mass_mailing_partner/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/ar.po b/mass_mailing_partner/i18n/ar.po index 54a4d49f..85f3442e 100644 --- a/mass_mailing_partner/i18n/ar.po +++ b/mass_mailing_partner/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/bg.po b/mass_mailing_partner/i18n/bg.po index 90ea54ad..39eff41d 100644 --- a/mass_mailing_partner/i18n/bg.po +++ b/mass_mailing_partner/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/bs.po b/mass_mailing_partner/i18n/bs.po index 0cdbc4aa..9638cf28 100644 --- a/mass_mailing_partner/i18n/bs.po +++ b/mass_mailing_partner/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/ca.po b/mass_mailing_partner/i18n/ca.po index 6a4464f8..62812647 100644 --- a/mass_mailing_partner/i18n/ca.po +++ b/mass_mailing_partner/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/ca_ES.po b/mass_mailing_partner/i18n/ca_ES.po index 35c56d98..6bde0f7b 100644 --- a/mass_mailing_partner/i18n/ca_ES.po +++ b/mass_mailing_partner/i18n/ca_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-11-02 14:15+0000\n" "PO-Revision-Date: 2016-11-22 16:25+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-crm-8-0/language/ca_ES/)\n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-crm-8-0/" +"language/ca_ES/)\n" +"Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Add contacts to mailing list" msgstr "" @@ -28,28 +29,28 @@ msgid "Add to mailing list" msgstr "" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Cancel" msgstr "Cancel·la" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Create contact mailing list" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid msgid "Created by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date msgid "Created on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,display_name:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name msgid "Display Name" msgstr "" @@ -59,45 +60,47 @@ msgid "Email Statistics" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id msgid "ID" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,__last_update:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update msgid "Last Modified on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid msgid "Last Updated by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date msgid "Last Updated on" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list -#: field:partner.mail.list.wizard,mail_list_id:0 -#: view:res.partner:mass_mailing_partner.view_res_partner_filter +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter msgid "Mailing List" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_contacts_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count msgid "Mailing list number" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_contact_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mailing lists" msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_mandatory:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory msgid "Mandatory Partner" msgstr "" @@ -107,22 +110,24 @@ msgid "Mass Mailing Contact" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_stats:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mass mailing stats" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_stats_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count msgid "Mass mailing stats number" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_res_partner -#: view:mail.mail.statistics:mass_mailing_partner.view_mail_mail_statistics_search -#: field:mail.mail.statistics,partner_id:0 -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_search -#: field:mail.mass_mailing.contact,partner_id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search msgid "Partner" msgstr "" @@ -133,7 +138,7 @@ msgid "Partner '%s' has no email." msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_category:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category msgid "Partner Tag" msgstr "" @@ -145,24 +150,14 @@ msgid "Partner already exists in this mailing list." msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,partner_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids msgid "Partner ids" msgstr "" #. module: mass_mailing_partner -#: code:addons/mass_mailing_partner/models/res_partner.py:35 +#: code:addons/mass_mailing_partner/models/res_partner.py:36 #, python-format msgid "" "This partner '%s' is subscribed to one or more mailing lists. Email must be " "assigned." msgstr "" - -#. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form -msgid "or" -msgstr "" - -#. module: mass_mailing_partner -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_tree -msgid "{'readonly': [('partner_id', '!=', False)]}" -msgstr "" diff --git a/mass_mailing_partner/i18n/cs.po b/mass_mailing_partner/i18n/cs.po index 393bbfa0..6ccecc97 100644 --- a/mass_mailing_partner/i18n/cs.po +++ b/mass_mailing_partner/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/da.po b/mass_mailing_partner/i18n/da.po index 516384cb..d82e6a31 100644 --- a/mass_mailing_partner/i18n/da.po +++ b/mass_mailing_partner/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/de.po b/mass_mailing_partner/i18n/de.po index 629267ac..aa0e695d 100644 --- a/mass_mailing_partner/i18n/de.po +++ b/mass_mailing_partner/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/el_GR.po b/mass_mailing_partner/i18n/el_GR.po index c5d3eaba..05a644cc 100644 --- a/mass_mailing_partner/i18n/el_GR.po +++ b/mass_mailing_partner/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/en_AU.po b/mass_mailing_partner/i18n/en_AU.po index 06a7c8e6..b453818e 100644 --- a/mass_mailing_partner/i18n/en_AU.po +++ b/mass_mailing_partner/i18n/en_AU.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-12-24 01:15+0000\n" "PO-Revision-Date: 2016-12-27 08:23+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-crm-8-0/language/en_AU/)\n" +"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-crm-8-0/" +"language/en_AU/)\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Add contacts to mailing list" msgstr "" @@ -28,28 +29,28 @@ msgid "Add to mailing list" msgstr "" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Cancel" msgstr "Cancel" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Create contact mailing list" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid msgid "Created by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date msgid "Created on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,display_name:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name msgid "Display Name" msgstr "" @@ -59,45 +60,47 @@ msgid "Email Statistics" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id msgid "ID" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,__last_update:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update msgid "Last Modified on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid msgid "Last Updated by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date msgid "Last Updated on" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list -#: field:partner.mail.list.wizard,mail_list_id:0 -#: view:res.partner:mass_mailing_partner.view_res_partner_filter +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter msgid "Mailing List" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_contacts_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count msgid "Mailing list number" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_contact_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mailing lists" msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_mandatory:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory msgid "Mandatory Partner" msgstr "" @@ -107,22 +110,24 @@ msgid "Mass Mailing Contact" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_stats:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mass mailing stats" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_stats_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count msgid "Mass mailing stats number" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_res_partner -#: view:mail.mail.statistics:mass_mailing_partner.view_mail_mail_statistics_search -#: field:mail.mail.statistics,partner_id:0 -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_search -#: field:mail.mass_mailing.contact,partner_id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search msgid "Partner" msgstr "" @@ -133,7 +138,7 @@ msgid "Partner '%s' has no email." msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_category:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category msgid "Partner Tag" msgstr "" @@ -145,24 +150,14 @@ msgid "Partner already exists in this mailing list." msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,partner_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids msgid "Partner ids" msgstr "" #. module: mass_mailing_partner -#: code:addons/mass_mailing_partner/models/res_partner.py:35 +#: code:addons/mass_mailing_partner/models/res_partner.py:36 #, python-format msgid "" "This partner '%s' is subscribed to one or more mailing lists. Email must be " "assigned." msgstr "" - -#. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form -msgid "or" -msgstr "" - -#. module: mass_mailing_partner -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_tree -msgid "{'readonly': [('partner_id', '!=', False)]}" -msgstr "" diff --git a/mass_mailing_partner/i18n/en_GB.po b/mass_mailing_partner/i18n/en_GB.po index bc5f2ee7..4241137e 100644 --- a/mass_mailing_partner/i18n/en_GB.po +++ b/mass_mailing_partner/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es.po b/mass_mailing_partner/i18n/es.po index e2616b0e..3462048c 100644 --- a/mass_mailing_partner/i18n/es.po +++ b/mass_mailing_partner/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 # enjolras , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: enjolras , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_AR.po b/mass_mailing_partner/i18n/es_AR.po index e2d1a32a..a7824c0d 100644 --- a/mass_mailing_partner/i18n/es_AR.po +++ b/mass_mailing_partner/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_CL.po b/mass_mailing_partner/i18n/es_CL.po index 8918a1cb..0ad3a636 100644 --- a/mass_mailing_partner/i18n/es_CL.po +++ b/mass_mailing_partner/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_CO.po b/mass_mailing_partner/i18n/es_CO.po index c152cad6..9ef524b9 100644 --- a/mass_mailing_partner/i18n/es_CO.po +++ b/mass_mailing_partner/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_CR.po b/mass_mailing_partner/i18n/es_CR.po index efa5a1ab..43d373f3 100644 --- a/mass_mailing_partner/i18n/es_CR.po +++ b/mass_mailing_partner/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_DO.po b/mass_mailing_partner/i18n/es_DO.po index 478c5f83..4dc638af 100644 --- a/mass_mailing_partner/i18n/es_DO.po +++ b/mass_mailing_partner/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_EC.po b/mass_mailing_partner/i18n/es_EC.po index c447bd5d..ee59bbc4 100644 --- a/mass_mailing_partner/i18n/es_EC.po +++ b/mass_mailing_partner/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_ES.po b/mass_mailing_partner/i18n/es_ES.po index c176f2f5..dccb03fc 100644 --- a/mass_mailing_partner/i18n/es_ES.po +++ b/mass_mailing_partner/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_MX.po b/mass_mailing_partner/i18n/es_MX.po index 82cf15e6..10e2c4ca 100644 --- a/mass_mailing_partner/i18n/es_MX.po +++ b/mass_mailing_partner/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_PE.po b/mass_mailing_partner/i18n/es_PE.po index 78e1b306..fcf9873b 100644 --- a/mass_mailing_partner/i18n/es_PE.po +++ b/mass_mailing_partner/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_PY.po b/mass_mailing_partner/i18n/es_PY.po index 6f9cb764..2e8088e4 100644 --- a/mass_mailing_partner/i18n/es_PY.po +++ b/mass_mailing_partner/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/es_VE.po b/mass_mailing_partner/i18n/es_VE.po index 137bc669..2a380f57 100644 --- a/mass_mailing_partner/i18n/es_VE.po +++ b/mass_mailing_partner/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/et.po b/mass_mailing_partner/i18n/et.po index 6f092733..ec595e43 100644 --- a/mass_mailing_partner/i18n/et.po +++ b/mass_mailing_partner/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/eu.po b/mass_mailing_partner/i18n/eu.po index 8764e706..1afc3bf8 100644 --- a/mass_mailing_partner/i18n/eu.po +++ b/mass_mailing_partner/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fa.po b/mass_mailing_partner/i18n/fa.po index 80214304..6ffdcec3 100644 --- a/mass_mailing_partner/i18n/fa.po +++ b/mass_mailing_partner/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: 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=1; plural=0;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fi.po b/mass_mailing_partner/i18n/fi.po index 4db01e34..8665b0df 100644 --- a/mass_mailing_partner/i18n/fi.po +++ b/mass_mailing_partner/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fr.po b/mass_mailing_partner/i18n/fr.po index e4ae018b..50e53098 100644 --- a/mass_mailing_partner/i18n/fr.po +++ b/mass_mailing_partner/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fr_CA.po b/mass_mailing_partner/i18n/fr_CA.po index 301c3bf8..2d0a9896 100644 --- a/mass_mailing_partner/i18n/fr_CA.po +++ b/mass_mailing_partner/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fr_CH.po b/mass_mailing_partner/i18n/fr_CH.po index c0aacacf..7f9e6483 100644 --- a/mass_mailing_partner/i18n/fr_CH.po +++ b/mass_mailing_partner/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/fr_FR.po b/mass_mailing_partner/i18n/fr_FR.po index 3fc9884e..a60be441 100644 --- a/mass_mailing_partner/i18n/fr_FR.po +++ b/mass_mailing_partner/i18n/fr_FR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-12-24 01:15+0000\n" "PO-Revision-Date: 2016-12-27 08:20+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: French (France) (http://www.transifex.com/oca/OCA-crm-8-0/language/fr_FR/)\n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-crm-8-0/" +"language/fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Add contacts to mailing list" msgstr "" @@ -28,28 +29,28 @@ msgid "Add to mailing list" msgstr "" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Cancel" msgstr "Annuler" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Create contact mailing list" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid msgid "Created by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date msgid "Created on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,display_name:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name msgid "Display Name" msgstr "" @@ -59,45 +60,47 @@ msgid "Email Statistics" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id msgid "ID" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,__last_update:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update msgid "Last Modified on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid msgid "Last Updated by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date msgid "Last Updated on" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list -#: field:partner.mail.list.wizard,mail_list_id:0 -#: view:res.partner:mass_mailing_partner.view_res_partner_filter +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter msgid "Mailing List" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_contacts_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count msgid "Mailing list number" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_contact_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mailing lists" msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_mandatory:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory msgid "Mandatory Partner" msgstr "" @@ -107,22 +110,24 @@ msgid "Mass Mailing Contact" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_stats:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mass mailing stats" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_stats_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count msgid "Mass mailing stats number" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_res_partner -#: view:mail.mail.statistics:mass_mailing_partner.view_mail_mail_statistics_search -#: field:mail.mail.statistics,partner_id:0 -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_search -#: field:mail.mass_mailing.contact,partner_id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search msgid "Partner" msgstr "" @@ -133,7 +138,7 @@ msgid "Partner '%s' has no email." msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_category:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category msgid "Partner Tag" msgstr "" @@ -145,24 +150,14 @@ msgid "Partner already exists in this mailing list." msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,partner_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids msgid "Partner ids" msgstr "" #. module: mass_mailing_partner -#: code:addons/mass_mailing_partner/models/res_partner.py:35 +#: code:addons/mass_mailing_partner/models/res_partner.py:36 #, python-format msgid "" "This partner '%s' is subscribed to one or more mailing lists. Email must be " "assigned." msgstr "" - -#. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form -msgid "or" -msgstr "" - -#. module: mass_mailing_partner -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_tree -msgid "{'readonly': [('partner_id', '!=', False)]}" -msgstr "" diff --git a/mass_mailing_partner/i18n/gl.po b/mass_mailing_partner/i18n/gl.po index 0f4fa1f5..3def670d 100644 --- a/mass_mailing_partner/i18n/gl.po +++ b/mass_mailing_partner/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/gl_ES.po b/mass_mailing_partner/i18n/gl_ES.po index d3a21c5c..670d1a6d 100644 --- a/mass_mailing_partner/i18n/gl_ES.po +++ b/mass_mailing_partner/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/he.po b/mass_mailing_partner/i18n/he.po index 7f173a80..f683b705 100644 --- a/mass_mailing_partner/i18n/he.po +++ b/mass_mailing_partner/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: 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=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/hi.po b/mass_mailing_partner/i18n/hi.po index 229cd8d2..3fef290d 100644 --- a/mass_mailing_partner/i18n/hi.po +++ b/mass_mailing_partner/i18n/hi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: msgid "" msgstr "" @@ -10,15 +10,16 @@ msgstr "" "POT-Creation-Date: 2016-12-24 01:15+0000\n" "PO-Revision-Date: 2016-12-27 08:24+0000\n" "Last-Translator: OCA Transbot \n" -"Language-Team: Hindi (http://www.transifex.com/oca/OCA-crm-8-0/language/hi/)\n" +"Language-Team: Hindi (http://www.transifex.com/oca/OCA-crm-8-0/language/" +"hi/)\n" +"Language: 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: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Add contacts to mailing list" msgstr "" @@ -28,28 +29,28 @@ msgid "Add to mailing list" msgstr "" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Cancel" msgstr "रद्द" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Create contact mailing list" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid msgid "Created by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date msgid "Created on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,display_name:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name msgid "Display Name" msgstr "" @@ -59,45 +60,47 @@ msgid "Email Statistics" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id msgid "ID" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,__last_update:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update msgid "Last Modified on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid msgid "Last Updated by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date msgid "Last Updated on" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list -#: field:partner.mail.list.wizard,mail_list_id:0 -#: view:res.partner:mass_mailing_partner.view_res_partner_filter +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter msgid "Mailing List" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_contacts_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count msgid "Mailing list number" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_contact_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mailing lists" msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_mandatory:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory msgid "Mandatory Partner" msgstr "" @@ -107,22 +110,24 @@ msgid "Mass Mailing Contact" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_stats:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mass mailing stats" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_stats_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count msgid "Mass mailing stats number" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_res_partner -#: view:mail.mail.statistics:mass_mailing_partner.view_mail_mail_statistics_search -#: field:mail.mail.statistics,partner_id:0 -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_search -#: field:mail.mass_mailing.contact,partner_id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search msgid "Partner" msgstr "" @@ -133,7 +138,7 @@ msgid "Partner '%s' has no email." msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_category:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category msgid "Partner Tag" msgstr "" @@ -145,24 +150,14 @@ msgid "Partner already exists in this mailing list." msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,partner_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids msgid "Partner ids" msgstr "" #. module: mass_mailing_partner -#: code:addons/mass_mailing_partner/models/res_partner.py:35 +#: code:addons/mass_mailing_partner/models/res_partner.py:36 #, python-format msgid "" "This partner '%s' is subscribed to one or more mailing lists. Email must be " "assigned." msgstr "" - -#. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form -msgid "or" -msgstr "" - -#. module: mass_mailing_partner -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_tree -msgid "{'readonly': [('partner_id', '!=', False)]}" -msgstr "" diff --git a/mass_mailing_partner/i18n/hr.po b/mass_mailing_partner/i18n/hr.po index 1006f228..94d77a8b 100644 --- a/mass_mailing_partner/i18n/hr.po +++ b/mass_mailing_partner/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/hr_HR.po b/mass_mailing_partner/i18n/hr_HR.po index 8685c564..00845378 100644 --- a/mass_mailing_partner/i18n/hr_HR.po +++ b/mass_mailing_partner/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hr_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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/hu.po b/mass_mailing_partner/i18n/hu.po index aa434b46..2c761af2 100644 --- a/mass_mailing_partner/i18n/hu.po +++ b/mass_mailing_partner/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/id.po b/mass_mailing_partner/i18n/id.po index 64d4d19a..a8092685 100644 --- a/mass_mailing_partner/i18n/id.po +++ b/mass_mailing_partner/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/it.po b/mass_mailing_partner/i18n/it.po index 12e0fb23..324d6cc9 100644 --- a/mass_mailing_partner/i18n/it.po +++ b/mass_mailing_partner/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/ja.po b/mass_mailing_partner/i18n/ja.po index fab9a2c4..c91d1584 100644 --- a/mass_mailing_partner/i18n/ja.po +++ b/mass_mailing_partner/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/ko.po b/mass_mailing_partner/i18n/ko.po index 46d0035f..7d0c7195 100644 --- a/mass_mailing_partner/i18n/ko.po +++ b/mass_mailing_partner/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/lo.po b/mass_mailing_partner/i18n/lo.po index a003e7be..8282e086 100644 --- a/mass_mailing_partner/i18n/lo.po +++ b/mass_mailing_partner/i18n/lo.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: msgid "" msgstr "" @@ -11,14 +11,14 @@ msgstr "" "PO-Revision-Date: 2016-12-27 08:22+0000\n" "Last-Translator: OCA Transbot \n" "Language-Team: Lao (http://www.transifex.com/oca/OCA-crm-8-0/language/lo/)\n" +"Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lo\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Add contacts to mailing list" msgstr "" @@ -28,28 +28,28 @@ msgid "Add to mailing list" msgstr "" #. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Cancel" msgstr "ຍົກເລີອກ" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form msgid "Create contact mailing list" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid msgid "Created by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,create_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date msgid "Created on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,display_name:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name msgid "Display Name" msgstr "" @@ -59,45 +59,47 @@ msgid "Email Statistics" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id msgid "ID" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,__last_update:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update msgid "Last Modified on" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_uid:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid msgid "Last Updated by" msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,write_date:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date msgid "Last Updated on" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list -#: field:partner.mail.list.wizard,mail_list_id:0 -#: view:res.partner:mass_mailing_partner.view_res_partner_filter +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter msgid "Mailing List" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_contacts_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count msgid "Mailing list number" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_contact_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mailing lists" msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_mandatory:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory msgid "Mandatory Partner" msgstr "" @@ -107,22 +109,24 @@ msgid "Mass Mailing Contact" msgstr "" #. module: mass_mailing_partner -#: view:res.partner:mass_mailing_partner.view_partner_form -#: field:res.partner,mass_mailing_stats:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form msgid "Mass mailing stats" msgstr "" #. module: mass_mailing_partner -#: field:res.partner,mass_mailing_stats_count:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count msgid "Mass mailing stats number" msgstr "" #. module: mass_mailing_partner #: model:ir.model,name:mass_mailing_partner.model_res_partner -#: view:mail.mail.statistics:mass_mailing_partner.view_mail_mail_statistics_search -#: field:mail.mail.statistics,partner_id:0 -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_search -#: field:mail.mass_mailing.contact,partner_id:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search msgid "Partner" msgstr "" @@ -133,7 +137,7 @@ msgid "Partner '%s' has no email." msgstr "" #. module: mass_mailing_partner -#: field:mail.mass_mailing.list,partner_category:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category msgid "Partner Tag" msgstr "" @@ -145,24 +149,14 @@ msgid "Partner already exists in this mailing list." msgstr "" #. module: mass_mailing_partner -#: field:partner.mail.list.wizard,partner_ids:0 +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids msgid "Partner ids" msgstr "" #. module: mass_mailing_partner -#: code:addons/mass_mailing_partner/models/res_partner.py:35 +#: code:addons/mass_mailing_partner/models/res_partner.py:36 #, python-format msgid "" "This partner '%s' is subscribed to one or more mailing lists. Email must be " "assigned." msgstr "" - -#. module: mass_mailing_partner -#: view:partner.mail.list.wizard:mass_mailing_partner.partner_mail_list_wizard_form -msgid "or" -msgstr "" - -#. module: mass_mailing_partner -#: view:mail.mass_mailing.contact:mass_mailing_partner.view_mail_mass_mailing_contact_tree -msgid "{'readonly': [('partner_id', '!=', False)]}" -msgstr "" diff --git a/mass_mailing_partner/i18n/lt.po b/mass_mailing_partner/i18n/lt.po index 7b42ada0..5d78b941 100644 --- a/mass_mailing_partner/i18n/lt.po +++ b/mass_mailing_partner/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/lt_LT.po b/mass_mailing_partner/i18n/lt_LT.po index 3d39fd82..e86e4919 100644 --- a/mass_mailing_partner/i18n/lt_LT.po +++ b/mass_mailing_partner/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_LT\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" #. module: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/lv.po b/mass_mailing_partner/i18n/lv.po index 9eabce85..2e6a1ad7 100644 --- a/mass_mailing_partner/i18n/lv.po +++ b/mass_mailing_partner/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/mass_mailing_partner.pot b/mass_mailing_partner/i18n/mass_mailing_partner.pot new file mode 100644 index 00000000..5b5a7d6e --- /dev/null +++ b/mass_mailing_partner/i18n/mass_mailing_partner.pot @@ -0,0 +1,157 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_partner +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_partner +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form +msgid "Add contacts to mailing list" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.actions.act_window,name:mass_mailing_partner.action_partner_mail_list +msgid "Add to mailing list" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form +msgid "Cancel" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model,name:mass_mailing_partner.model_partner_mail_list_wizard +#: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form +msgid "Create contact mailing list" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_uid +msgid "Created by" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_create_date +msgid "Created on" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_display_name +msgid "Display Name" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model,name:mass_mailing_partner.model_mail_mail_statistics +msgid "Email Statistics" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_id +msgid "ID" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard___last_update +msgid "Last Modified on" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_write_date +msgid "Last Updated on" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_list +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_mail_list_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_res_partner_filter +msgid "Mailing List" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contacts_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contacts_count +msgid "Mailing list number" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_contact_ids +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_contact_ids +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form +msgid "Mailing lists" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_mandatory +msgid "Mandatory Partner" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model,name:mass_mailing_partner.model_mail_mass_mailing_contact +msgid "Mass Mailing Contact" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_partner_form +msgid "Mass mailing stats" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_partner_mass_mailing_stats_count +#: model:ir.model.fields,field_description:mass_mailing_partner.field_res_users_mass_mailing_stats_count +msgid "Mass mailing stats number" +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model,name:mass_mailing_partner.model_res_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mail_statistics_partner_id +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_contact_partner_id +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mail_statistics_search +#: model:ir.ui.view,arch_db:mass_mailing_partner.view_mail_mass_mailing_contact_search +msgid "Partner" +msgstr "" + +#. module: mass_mailing_partner +#: code:addons/mass_mailing_partner/wizard/partner_mail_list_wizard.py:26 +#, python-format +msgid "Partner '%s' has no email." +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_mail_mass_mailing_list_partner_category +msgid "Partner Tag" +msgstr "" + +#. module: mass_mailing_partner +#: code:addons/mass_mailing_partner/models/mail_mass_mailing_contact.py:19 +#: sql_constraint:mail.mass_mailing.contact:0 +#, python-format +msgid "Partner already exists in this mailing list." +msgstr "" + +#. module: mass_mailing_partner +#: model:ir.model.fields,field_description:mass_mailing_partner.field_partner_mail_list_wizard_partner_ids +msgid "Partner ids" +msgstr "" + +#. module: mass_mailing_partner +#: code:addons/mass_mailing_partner/models/res_partner.py:36 +#, python-format +msgid "This partner '%s' is subscribed to one or more mailing lists. Email must be assigned." +msgstr "" + diff --git a/mass_mailing_partner/i18n/mk.po b/mass_mailing_partner/i18n/mk.po index f6e8aa53..c9a872e9 100644 --- a/mass_mailing_partner/i18n/mk.po +++ b/mass_mailing_partner/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/mn.po b/mass_mailing_partner/i18n/mn.po index 26b710dd..8b4af4ba 100644 --- a/mass_mailing_partner/i18n/mn.po +++ b/mass_mailing_partner/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/nb.po b/mass_mailing_partner/i18n/nb.po index 0ee9c031..2084d5e7 100644 --- a/mass_mailing_partner/i18n/nb.po +++ b/mass_mailing_partner/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/nb_NO.po b/mass_mailing_partner/i18n/nb_NO.po index 44667069..a54a0caa 100644 --- a/mass_mailing_partner/i18n/nb_NO.po +++ b/mass_mailing_partner/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/nl.po b/mass_mailing_partner/i18n/nl.po index c5c64797..aa80db71 100644 --- a/mass_mailing_partner/i18n/nl.po +++ b/mass_mailing_partner/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/nl_BE.po b/mass_mailing_partner/i18n/nl_BE.po index c22345f2..1c408e2e 100644 --- a/mass_mailing_partner/i18n/nl_BE.po +++ b/mass_mailing_partner/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/nl_NL.po b/mass_mailing_partner/i18n/nl_NL.po index 97143a8f..a878ffbc 100644 --- a/mass_mailing_partner/i18n/nl_NL.po +++ b/mass_mailing_partner/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 # Peter Hageman , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/pl.po b/mass_mailing_partner/i18n/pl.po index cc47e457..c0a529c2 100644 --- a/mass_mailing_partner/i18n/pl.po +++ b/mass_mailing_partner/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/pt.po b/mass_mailing_partner/i18n/pt.po index a4f75d2c..08dfd71e 100644 --- a/mass_mailing_partner/i18n/pt.po +++ b/mass_mailing_partner/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 # Pedro Castro Silva , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:18+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/pt_BR.po b/mass_mailing_partner/i18n/pt_BR.po index 655783f7..50cbc3d4 100644 --- a/mass_mailing_partner/i18n/pt_BR.po +++ b/mass_mailing_partner/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/pt_PT.po b/mass_mailing_partner/i18n/pt_PT.po index 1a12d8dc..54db0aeb 100644 --- a/mass_mailing_partner/i18n/pt_PT.po +++ b/mass_mailing_partner/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/ro.po b/mass_mailing_partner/i18n/ro.po index 8dcc3cc9..7e1d6db5 100644 --- a/mass_mailing_partner/i18n/ro.po +++ b/mass_mailing_partner/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/ru.po b/mass_mailing_partner/i18n/ru.po index 0447a9cf..31eaa070 100644 --- a/mass_mailing_partner/i18n/ru.po +++ b/mass_mailing_partner/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/sk.po b/mass_mailing_partner/i18n/sk.po index b3b60674..ca4b0867 100644 --- a/mass_mailing_partner/i18n/sk.po +++ b/mass_mailing_partner/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: 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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/sl.po b/mass_mailing_partner/i18n/sl.po index 0f25ff06..86b48b25 100644 --- a/mass_mailing_partner/i18n/sl.po +++ b/mass_mailing_partner/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/sr.po b/mass_mailing_partner/i18n/sr.po index 9af0cc57..b8582371 100644 --- a/mass_mailing_partner/i18n/sr.po +++ b/mass_mailing_partner/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: 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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/sr@latin.po b/mass_mailing_partner/i18n/sr@latin.po index b5b77ef5..d854866a 100644 --- a/mass_mailing_partner/i18n/sr@latin.po +++ b/mass_mailing_partner/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\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" +"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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/sv.po b/mass_mailing_partner/i18n/sv.po index 7552faaa..3423cf85 100644 --- a/mass_mailing_partner/i18n/sv.po +++ b/mass_mailing_partner/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/th.po b/mass_mailing_partner/i18n/th.po index 57947fa9..81efd550 100644 --- a/mass_mailing_partner/i18n/th.po +++ b/mass_mailing_partner/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/tr.po b/mass_mailing_partner/i18n/tr.po index 1a313078..b3411f35 100644 --- a/mass_mailing_partner/i18n/tr.po +++ b/mass_mailing_partner/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/tr_TR.po b/mass_mailing_partner/i18n/tr_TR.po index a505de6b..f8c40e03 100644 --- a/mass_mailing_partner/i18n/tr_TR.po +++ b/mass_mailing_partner/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2018-01-16 03:47+0000\n" "PO-Revision-Date: 2018-01-16 03:47+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/uk.po b/mass_mailing_partner/i18n/uk.po index c165b34b..c0286664 100644 --- a/mass_mailing_partner/i18n/uk.po +++ b/mass_mailing_partner/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: 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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\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: mass_mailing_partner #: model:ir.ui.view,arch_db:mass_mailing_partner.partner_mail_list_wizard_form diff --git a/mass_mailing_partner/i18n/vi.po b/mass_mailing_partner/i18n/vi.po index 897127d2..5f6cacae 100644 --- a/mass_mailing_partner/i18n/vi.po +++ b/mass_mailing_partner/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/vi_VN.po b/mass_mailing_partner/i18n/vi_VN.po index cc519338..2158d309 100644 --- a/mass_mailing_partner/i18n/vi_VN.po +++ b/mass_mailing_partner/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/zh_CN.po b/mass_mailing_partner/i18n/zh_CN.po index e9a5844d..1576d3df 100644 --- a/mass_mailing_partner/i18n/zh_CN.po +++ b/mass_mailing_partner/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: 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: mass_mailing_partner diff --git a/mass_mailing_partner/i18n/zh_TW.po b/mass_mailing_partner/i18n/zh_TW.po index 9a9b0080..c750ef66 100644 --- a/mass_mailing_partner/i18n/zh_TW.po +++ b/mass_mailing_partner/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_partner -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-01 02:19+0000\n" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: 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: mass_mailing_partner From 6b28b68ce7fa92a0186a00e5a84e7736e4ee2b99 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 22:00:01 +0000 Subject: [PATCH 44/86] [UPD] Update mass_mailing_resend.pot --- mass_mailing_resend/i18n/ca.po | 10 +++--- mass_mailing_resend/i18n/de.po | 10 +++--- mass_mailing_resend/i18n/es.po | 20 ++++++++--- mass_mailing_resend/i18n/fr.po | 14 ++++---- .../i18n/mass_mailing_resend.pot | 36 +++++++++++++++++++ mass_mailing_resend/i18n/sl.po | 13 +++---- 6 files changed, 75 insertions(+), 28 deletions(-) create mode 100644 mass_mailing_resend/i18n/mass_mailing_resend.pot diff --git a/mass_mailing_resend/i18n/ca.po b/mass_mailing_resend/i18n/ca.po index ae5566b2..1b59b487 100644 --- a/mass_mailing_resend/i18n/ca.po +++ b/mass_mailing_resend/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_resend -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_resend #: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form msgid "" -" New sending will be done only to not " -"sent/new recipients. If you want to resend again the mass mailing to already" -" sent recipients, click on Emails Sent smart-button for removing the " +" New sending will be done only to not sent/" +"new recipients. If you want to resend again the mass mailing to already sent " +"recipients, click on Emails Sent smart-button for removing the " "existing record(s)." msgstr "" diff --git a/mass_mailing_resend/i18n/de.po b/mass_mailing_resend/i18n/de.po index 3973755b..d9f24fae 100644 --- a/mass_mailing_resend/i18n/de.po +++ b/mass_mailing_resend/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_resend -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,18 +12,18 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_resend #: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form msgid "" -" New sending will be done only to not " -"sent/new recipients. If you want to resend again the mass mailing to already" -" sent recipients, click on Emails Sent smart-button for removing the " +" New sending will be done only to not sent/" +"new recipients. If you want to resend again the mass mailing to already sent " +"recipients, click on Emails Sent smart-button for removing the " "existing record(s)." msgstr "" diff --git a/mass_mailing_resend/i18n/es.po b/mass_mailing_resend/i18n/es.po index cdb4db74..0e0c6d3d 100644 --- a/mass_mailing_resend/i18n/es.po +++ b/mass_mailing_resend/i18n/es.po @@ -1,6 +1,6 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * mass_mailing_resend +# * mass_mailing_resend # msgid "" msgstr "" @@ -10,6 +10,7 @@ msgstr "" "PO-Revision-Date: 2017-11-22 10:42+0000\n" "Last-Translator: <>\n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -17,8 +18,16 @@ msgstr "" #. module: mass_mailing_resend #: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form -msgid " New sending will be done only to not sent/new recipients. If you want to resend again the mass mailing to already sent recipients, click on Emails Sent smart-button for removing the existing record(s)." -msgstr " El nuevo envío se realizará solo a los destinatarios no enviados/nuevos. Si quiere reenviar otra vez el correo masivo a destinatarios ya enviados, pulse en el botón Correos enviados para eliminar el/los registro/s existentes." +msgid "" +" New sending will be done only to not sent/" +"new recipients. If you want to resend again the mass mailing to already sent " +"recipients, click on Emails Sent smart-button for removing the " +"existing record(s)." +msgstr "" +" El nuevo envío se realizará solo a los " +"destinatarios no enviados/nuevos. Si quiere reenviar otra vez el correo " +"masivo a destinatarios ya enviados, pulse en el botón Correos enviados para eliminar el/los registro/s existentes." #. module: mass_mailing_resend #: model:ir.model,name:mass_mailing_resend.model_mail_mass_mailing @@ -34,5 +43,6 @@ msgstr "Reenviar" #: code:addons/mass_mailing_resend/models/mass_mailing.py:16 #, python-format msgid "You can't resend a mass mailing that is being sent or in draft state." -msgstr "No puede reenviar un correo masivo que está siendo enviado en estado borrador." - +msgstr "" +"No puede reenviar un correo masivo que está siendo enviado en estado " +"borrador." diff --git a/mass_mailing_resend/i18n/fr.po b/mass_mailing_resend/i18n/fr.po index e13c33de..e7b14bb4 100644 --- a/mass_mailing_resend/i18n/fr.po +++ b/mass_mailing_resend/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_resend -# +# # Translators: # OCA Transbot , 2018 # Quentin THEURET , 2018 @@ -13,22 +13,22 @@ msgstr "" "PO-Revision-Date: 2018-02-26 01:46+0000\n" "Last-Translator: Quentin THEURET , 2018\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_resend #: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form msgid "" -" New sending will be done only to not " -"sent/new recipients. If you want to resend again the mass mailing to already" -" sent recipients, click on Emails Sent smart-button for removing the " +" New sending will be done only to not sent/" +"new recipients. If you want to resend again the mass mailing to already sent " +"recipients, click on Emails Sent smart-button for removing the " "existing record(s)." msgstr "" -"Un nouvel envoi sera effectué uniquement aux" -" nouveaux destinataires ou à ceux qui ne l'ont pas encore reçu. Si vous " +"Un nouvel envoi sera effectué uniquement aux " +"nouveaux destinataires ou à ceux qui ne l'ont pas encore reçu. Si vous " "souhaitez envoyer à nouveau le publipostage à tous les destinataires, " "cliquez sur le bouton Courriels envoyéspour supprimer le(s) " "enregistrement(s) existant(s)." diff --git a/mass_mailing_resend/i18n/mass_mailing_resend.pot b/mass_mailing_resend/i18n/mass_mailing_resend.pot new file mode 100644 index 00000000..e05b393d --- /dev/null +++ b/mass_mailing_resend/i18n/mass_mailing_resend.pot @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_resend +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_resend +#: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form +msgid " New sending will be done only to not sent/new recipients. If you want to resend again the mass mailing to already sent recipients, click on Emails Sent smart-button for removing the existing record(s)." +msgstr "" + +#. module: mass_mailing_resend +#: model:ir.model,name:mass_mailing_resend.model_mail_mass_mailing +msgid "Mass Mailing" +msgstr "" + +#. module: mass_mailing_resend +#: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form +msgid "Resend" +msgstr "" + +#. module: mass_mailing_resend +#: code:addons/mass_mailing_resend/models/mass_mailing.py:16 +#, python-format +msgid "You can't resend a mass mailing that is being sent or in draft state." +msgstr "" + diff --git a/mass_mailing_resend/i18n/sl.po b/mass_mailing_resend/i18n/sl.po index 3edb803e..b70a89cc 100644 --- a/mass_mailing_resend/i18n/sl.po +++ b/mass_mailing_resend/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_resend -# +# # Translators: # OCA Transbot , 2018 msgid "" @@ -12,18 +12,19 @@ msgstr "" "PO-Revision-Date: 2018-01-24 03:51+0000\n" "Last-Translator: OCA Transbot , 2018\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mass_mailing_resend #: model:ir.ui.view,arch_db:mass_mailing_resend.view_mail_mass_mailing_form msgid "" -" New sending will be done only to not " -"sent/new recipients. If you want to resend again the mass mailing to already" -" sent recipients, click on Emails Sent smart-button for removing the " +" New sending will be done only to not sent/" +"new recipients. If you want to resend again the mass mailing to already sent " +"recipients, click on Emails Sent smart-button for removing the " "existing record(s)." msgstr "" From 8efd53afc5029d1fd86e72cf3676e918f7e65320 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 22:00:02 +0000 Subject: [PATCH 45/86] [UPD] Update mass_mailing_unique.pot --- mass_mailing_unique/i18n/ca.po | 4 +- mass_mailing_unique/i18n/de.po | 4 +- mass_mailing_unique/i18n/es.po | 4 +- mass_mailing_unique/i18n/fr.po | 7 ++- mass_mailing_unique/i18n/hr.po | 7 +-- mass_mailing_unique/i18n/it.po | 7 ++- .../i18n/mass_mailing_unique.pot | 53 +++++++++++++++++++ mass_mailing_unique/i18n/pt.po | 4 +- mass_mailing_unique/i18n/sl.po | 7 +-- 9 files changed, 75 insertions(+), 22 deletions(-) create mode 100644 mass_mailing_unique/i18n/mass_mailing_unique.pot diff --git a/mass_mailing_unique/i18n/ca.po b/mass_mailing_unique/i18n/ca.po index 765e90f2..8d10d163 100644 --- a/mass_mailing_unique/i18n/ca.po +++ b/mass_mailing_unique/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # Carles Antoli , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-07 07:32+0000\n" "Last-Translator: Carles Antoli , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: 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: mass_mailing_unique diff --git a/mass_mailing_unique/i18n/de.po b/mass_mailing_unique/i18n/de.po index a26079c5..cee73288 100644 --- a/mass_mailing_unique/i18n/de.po +++ b/mass_mailing_unique/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # Rudolf Schnapka , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-03-28 08:19+0000\n" "Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: 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: mass_mailing_unique diff --git a/mass_mailing_unique/i18n/es.po b/mass_mailing_unique/i18n/es.po index 14184b38..81c77429 100644 --- a/mass_mailing_unique/i18n/es.po +++ b/mass_mailing_unique/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-04 03:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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: mass_mailing_unique diff --git a/mass_mailing_unique/i18n/fr.po b/mass_mailing_unique/i18n/fr.po index c420a297..18b18942 100644 --- a/mass_mailing_unique/i18n/fr.po +++ b/mass_mailing_unique/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-04 03:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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: mass_mailing_unique @@ -26,8 +26,7 @@ msgstr "Impossible d'avoir plus d'une liste avec le même nom." #. module: mass_mailing_unique #: sql_constraint:mail.mass_mailing.contact:0 msgid "Cannot have the same email more than once in the same list." -msgstr "" -"Impossible d'avoir le même courriel plus d'une fois dans la même liste" +msgstr "Impossible d'avoir le même courriel plus d'une fois dans la même liste" #. module: mass_mailing_unique #: code:addons/mass_mailing_unique/hooks.py:44 diff --git a/mass_mailing_unique/i18n/hr.po b/mass_mailing_unique/i18n/hr.po index 9359ab35..23a225da 100644 --- a/mass_mailing_unique/i18n/hr.po +++ b/mass_mailing_unique/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # Bole , 2017 # OCA Transbot , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"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: mass_mailing_unique #: sql_constraint:mail.mass_mailing.list:0 diff --git a/mass_mailing_unique/i18n/it.po b/mass_mailing_unique/i18n/it.po index 12f5dab6..7d672fb9 100644 --- a/mass_mailing_unique/i18n/it.po +++ b/mass_mailing_unique/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-01-04 03:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: 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: mass_mailing_unique @@ -27,8 +27,7 @@ msgstr "Non è possibile avere più di una lista con lo stesso nome." #: sql_constraint:mail.mass_mailing.contact:0 msgid "Cannot have the same email more than once in the same list." msgstr "" -"Non è possibile inserire la stessa email più di una volta nella stessa " -"lista." +"Non è possibile inserire la stessa email più di una volta nella stessa lista." #. module: mass_mailing_unique #: code:addons/mass_mailing_unique/hooks.py:44 diff --git a/mass_mailing_unique/i18n/mass_mailing_unique.pot b/mass_mailing_unique/i18n/mass_mailing_unique.pot new file mode 100644 index 00000000..59da8060 --- /dev/null +++ b/mass_mailing_unique/i18n/mass_mailing_unique.pot @@ -0,0 +1,53 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mass_mailing_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \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: mass_mailing_unique +#: sql_constraint:mail.mass_mailing.list:0 +msgid "Cannot have more than one lists with the same name." +msgstr "" + +#. module: mass_mailing_unique +#: sql_constraint:mail.mass_mailing.contact:0 +msgid "Cannot have the same email more than once in the same list." +msgstr "" + +#. module: mass_mailing_unique +#: code:addons/mass_mailing_unique/hooks.py:44 +#, python-format +msgid "Fix this before installing:" +msgstr "" + +#. module: mass_mailing_unique +#: model:ir.model,name:mass_mailing_unique.model_mail_mass_mailing_list +msgid "Mailing List" +msgstr "" + +#. module: mass_mailing_unique +#: model:ir.model,name:mass_mailing_unique.model_mail_mass_mailing_contact +msgid "Mass Mailing Contact" +msgstr "" + +#. module: mass_mailing_unique +#: code:addons/mass_mailing_unique/hooks.py:39 +#, python-format +msgid "There are {1} lists with name {0}." +msgstr "" + +#. module: mass_mailing_unique +#: code:addons/mass_mailing_unique/hooks.py:30 +#, python-format +msgid "{0} appears {2} times in list {1}." +msgstr "" + diff --git a/mass_mailing_unique/i18n/pt.po b/mass_mailing_unique/i18n/pt.po index 740416f7..415546cd 100644 --- a/mass_mailing_unique/i18n/pt.po +++ b/mass_mailing_unique/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # Pedro Castro Silva , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-12-02 13:18+0000\n" "Last-Translator: Pedro Castro Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: 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: mass_mailing_unique diff --git a/mass_mailing_unique/i18n/sl.po b/mass_mailing_unique/i18n/sl.po index 34ba8b5b..8f4352e8 100644 --- a/mass_mailing_unique/i18n/sl.po +++ b/mass_mailing_unique/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * mass_mailing_unique -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-01-04 03:40+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: mass_mailing_unique #: sql_constraint:mail.mass_mailing.list:0 From 630df69746fc9a3790ad1420cdca45243e197bd1 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sat, 23 Jun 2018 22:00:03 +0000 Subject: [PATCH 46/86] [UPD] Update website_mass_mailing_name.pot --- website_mass_mailing_name/i18n/de.po | 4 ++-- website_mass_mailing_name/i18n/es.po | 4 ++-- website_mass_mailing_name/i18n/fr.po | 4 ++-- website_mass_mailing_name/i18n/hr.po | 7 ++++--- website_mass_mailing_name/i18n/sl.po | 7 ++++--- .../i18n/website_mass_mailing_name.pot | 20 +++++++++++++++++++ 6 files changed, 34 insertions(+), 12 deletions(-) create mode 100644 website_mass_mailing_name/i18n/website_mass_mailing_name.pot diff --git a/website_mass_mailing_name/i18n/de.po b/website_mass_mailing_name/i18n/de.po index e4a5540e..9c1145b4 100644 --- a/website_mass_mailing_name/i18n/de.po +++ b/website_mass_mailing_name/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_mass_mailing_name -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: website_mass_mailing_name diff --git a/website_mass_mailing_name/i18n/es.po b/website_mass_mailing_name/i18n/es.po index 59e2a9e4..93f109ca 100644 --- a/website_mass_mailing_name/i18n/es.po +++ b/website_mass_mailing_name/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_mass_mailing_name -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: 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_mass_mailing_name diff --git a/website_mass_mailing_name/i18n/fr.po b/website_mass_mailing_name/i18n/fr.po index dc22bc7b..91f84235 100644 --- a/website_mass_mailing_name/i18n/fr.po +++ b/website_mass_mailing_name/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_mass_mailing_name -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: 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_mass_mailing_name diff --git a/website_mass_mailing_name/i18n/hr.po b/website_mass_mailing_name/i18n/hr.po index 169fa6bd..11b6a3fa 100644 --- a/website_mass_mailing_name/i18n/hr.po +++ b/website_mass_mailing_name/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_mass_mailing_name -# +# # Translators: # Bole , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:19+0000\n" "Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: 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" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. module: website_mass_mailing_name #: model:ir.ui.view,arch_db:website_mass_mailing_name.s_newsletter_subscribe_form diff --git a/website_mass_mailing_name/i18n/sl.po b/website_mass_mailing_name/i18n/sl.po index fb0572af..13680c7c 100644 --- a/website_mass_mailing_name/i18n/sl.po +++ b/website_mass_mailing_name/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * website_mass_mailing_name -# +# # Translators: # OCA Transbot , 2017 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2017-07-22 00:51+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: 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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #. module: website_mass_mailing_name #: model:ir.ui.view,arch_db:website_mass_mailing_name.s_newsletter_subscribe_form diff --git a/website_mass_mailing_name/i18n/website_mass_mailing_name.pot b/website_mass_mailing_name/i18n/website_mass_mailing_name.pot new file mode 100644 index 00000000..6e7aaadf --- /dev/null +++ b/website_mass_mailing_name/i18n/website_mass_mailing_name.pot @@ -0,0 +1,20 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_mass_mailing_name +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_mass_mailing_name +#: model:ir.ui.view,arch_db:website_mass_mailing_name.s_newsletter_subscribe_form +msgid "your name..." +msgstr "" + From 1bd032df7df894af7d1ff9b31d543e04eef13583 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Sat, 30 Jun 2018 02:05:18 +0200 Subject: [PATCH 47/86] [FIX] README.rst syntax --- mail_optional_follower_notification/README.rst | 2 -- mail_restrict_follower_selection/README.rst | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mail_optional_follower_notification/README.rst b/mail_optional_follower_notification/README.rst index 0998cc9d..83f4f501 100644 --- a/mail_optional_follower_notification/README.rst +++ b/mail_optional_follower_notification/README.rst @@ -27,8 +27,6 @@ This field it's initialized to true to keep the standard behavior. :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/205/10.0 - * https://www.odoo.com/forum/help-1 - Bug Tracker =========== diff --git a/mail_restrict_follower_selection/README.rst b/mail_restrict_follower_selection/README.rst index 97c76b0f..952c67ac 100644 --- a/mail_restrict_follower_selection/README.rst +++ b/mail_restrict_follower_selection/README.rst @@ -1,5 +1,6 @@ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg :alt: License: AGPL-3 + Restrict follower selection =========================== From e638424eeb65c99dc483688127f1650121205915 Mon Sep 17 00:00:00 2001 From: Isaac Gallart Date: Sat, 30 Jun 2018 02:06:36 +0200 Subject: [PATCH 48/86] [10.0][FIX] mail_sendgrid_mass_mailing: Bad import (#288) --- mail_sendgrid/README.rst | 1 + mail_sendgrid/__manifest__.py | 2 +- mail_sendgrid/models/mail_mail.py | 2 +- mail_sendgrid/models/sendgrid_template.py | 2 +- mail_sendgrid_mass_mailing/README.rst | 1 + mail_sendgrid_mass_mailing/__manifest__.py | 2 +- mail_sendgrid_mass_mailing/models/mail_mail.py | 5 ++--- 7 files changed, 8 insertions(+), 7 deletions(-) diff --git a/mail_sendgrid/README.rst b/mail_sendgrid/README.rst index 9de78760..7f0f8661 100644 --- a/mail_sendgrid/README.rst +++ b/mail_sendgrid/README.rst @@ -103,6 +103,7 @@ Contributors * Emanuel Cino * Roman Zoller +* Isaac Gallart Maintainer ---------- diff --git a/mail_sendgrid/__manifest__.py b/mail_sendgrid/__manifest__.py index f2c07e09..4e42d449 100644 --- a/mail_sendgrid/__manifest__.py +++ b/mail_sendgrid/__manifest__.py @@ -3,7 +3,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'SendGrid', - 'version': '10.0.1.0.1', + 'version': '10.0.1.0.2', 'category': 'Social Network', 'author': 'Compassion CH, Odoo Community Association (OCA)', 'license': 'AGPL-3', diff --git a/mail_sendgrid/models/mail_mail.py b/mail_sendgrid/models/mail_mail.py index 9d1b8503..d2ad5498 100644 --- a/mail_sendgrid/models/mail_mail.py +++ b/mail_sendgrid/models/mail_mail.py @@ -19,7 +19,7 @@ try: from sendgrid.helpers.mail import Email, Attachment, CustomArg, Content, \ Personalization, Substitution, Mail, Header except ImportError: - _logger.error("ImportError raised while loading module.") + _logger.warning("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True) diff --git a/mail_sendgrid/models/sendgrid_template.py b/mail_sendgrid/models/sendgrid_template.py index d96bf641..91a4ace7 100644 --- a/mail_sendgrid/models/sendgrid_template.py +++ b/mail_sendgrid/models/sendgrid_template.py @@ -15,7 +15,7 @@ _logger = logging.getLogger(__name__) try: import sendgrid except ImportError: - _logger.error("ImportError raised while loading module.") + _logger.warning("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True) diff --git a/mail_sendgrid_mass_mailing/README.rst b/mail_sendgrid_mass_mailing/README.rst index 41652f72..4c078672 100644 --- a/mail_sendgrid_mass_mailing/README.rst +++ b/mail_sendgrid_mass_mailing/README.rst @@ -63,6 +63,7 @@ Contributors ------------ * Emanuel Cino +* Isaac Gallart Do not contact contributors directly about support or help with technical issues. diff --git a/mail_sendgrid_mass_mailing/__manifest__.py b/mail_sendgrid_mass_mailing/__manifest__.py index cef66bcd..25d65e3f 100644 --- a/mail_sendgrid_mass_mailing/__manifest__.py +++ b/mail_sendgrid_mass_mailing/__manifest__.py @@ -3,7 +3,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Mass Mailing with SendGrid', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'category': 'Social Network', 'author': 'Compassion CH, Odoo Community Association (OCA)', 'license': 'AGPL-3', diff --git a/mail_sendgrid_mass_mailing/models/mail_mail.py b/mail_sendgrid_mass_mailing/models/mail_mail.py index d75a1547..a27723e7 100644 --- a/mail_sendgrid_mass_mailing/models/mail_mail.py +++ b/mail_sendgrid_mass_mailing/models/mail_mail.py @@ -7,10 +7,9 @@ import logging _logger = logging.getLogger(__name__) try: - from sendgrid.helpers.mail.mail import TrackingSettings, \ - SubscriptionTracking + from sendgrid.helpers.mail import TrackingSettings, SubscriptionTracking except ImportError: - _logger.error("ImportError raised while loading module.") + _logger.warning("ImportError raised while loading module.") _logger.debug("ImportError details:", exc_info=True) From c21c5e89d118efc457ed5c81546c70d49b931aad Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sun, 1 Jul 2018 03:03:35 +0200 Subject: [PATCH 49/86] [UPD] addons table in README.md [ci skip] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fca70bc4..297ffd19 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ addon | version | summary [mail_optional_autofollow](mail_optional_autofollow/) | 10.0.1.0.0 | Choose if you want to automatically add new recipients as followers on mail.compose.message [mail_optional_follower_notification](mail_optional_follower_notification/) | 10.0.1.0.1 | Choose if you want to automatically notify followers on mail.compose.message [mail_restrict_follower_selection](mail_restrict_follower_selection/) | 10.0.1.0.0 | Define a domain from which followers can be selected -[mail_sendgrid](mail_sendgrid/) | 10.0.1.0.1 | SendGrid -[mail_sendgrid_mass_mailing](mail_sendgrid_mass_mailing/) | 10.0.1.0.0 | Mass Mailing with SendGrid +[mail_sendgrid](mail_sendgrid/) | 10.0.1.0.2 | SendGrid +[mail_sendgrid_mass_mailing](mail_sendgrid_mass_mailing/) | 10.0.1.0.1 | Mass Mailing with SendGrid [mail_tracking](mail_tracking/) | 10.0.1.1.1 | Email tracking system for all mails sent [mail_tracking_mailgun](mail_tracking_mailgun/) | 10.0.1.1.3 | Mail tracking and Mailgun webhooks integration [mail_tracking_mass_mailing](mail_tracking_mass_mailing/) | 10.0.1.0.1 | Improve mass mailing email tracking From 1d68d252b7a8bea0d19ea7618551c07a029a3b08 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Mon, 14 Sep 2015 09:58:13 +0200 Subject: [PATCH 50/86] [ADD] mail_forward --- mail_forward/README.rst | 101 +++++++++++ mail_forward/__init__.py | 5 + mail_forward/__openerp__.py | 28 ++++ mail_forward/i18n/es.po | 168 +++++++++++++++++++ mail_forward/models/__init__.py | 5 + mail_forward/models/compose_message.py | 97 +++++++++++ mail_forward/models/res_request_link.py | 14 ++ mail_forward/static/description/icon.png | Bin 0 -> 1881 bytes mail_forward/static/src/css/mail_forward.css | 12 ++ mail_forward/static/src/js/mail_forward.js | 77 +++++++++ mail_forward/static/src/xml/mail_forward.xml | 14 ++ mail_forward/tests/__init__.py | 5 + mail_forward/tests/test_compose_message.py | 65 +++++++ mail_forward/views/assets.xml | 21 +++ mail_forward/views/compose_message.xml | 64 +++++++ mail_forward/views/res_request_link.xml | 32 ++++ 16 files changed, 708 insertions(+) create mode 100644 mail_forward/README.rst create mode 100644 mail_forward/__init__.py create mode 100644 mail_forward/__openerp__.py create mode 100644 mail_forward/i18n/es.po create mode 100644 mail_forward/models/__init__.py create mode 100644 mail_forward/models/compose_message.py create mode 100644 mail_forward/models/res_request_link.py create mode 100644 mail_forward/static/description/icon.png create mode 100644 mail_forward/static/src/css/mail_forward.css create mode 100644 mail_forward/static/src/js/mail_forward.js create mode 100644 mail_forward/static/src/xml/mail_forward.xml create mode 100644 mail_forward/tests/__init__.py create mode 100644 mail_forward/tests/test_compose_message.py create mode 100644 mail_forward/views/assets.xml create mode 100644 mail_forward/views/compose_message.xml create mode 100644 mail_forward/views/res_request_link.xml diff --git a/mail_forward/README.rst b/mail_forward/README.rst new file mode 100644 index 00000000..83f998b7 --- /dev/null +++ b/mail_forward/README.rst @@ -0,0 +1,101 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +=============== +Message forward +=============== + +This module was written to extend the functionality of mails to support +forwarding them to another contact or database object. + +* **To another object of the database:** All its followers are notified + according to their settings. + +* **To other contacts:** They recieve the forwarded message according to the + usual notification rules of Odoo. + +Configuration +============= + +When installed, this module allows forwarding to a limited selection of +database models, that will get automatically updated when you install other +modules. + +This list can be customized by a user that has *Technical Features* permission. +To do it: + +* Go to *Settings > Technical > Database Structure > Referenceable Models*. + +* Any model there with *Mail forward target* enabled will appear in the list of + models that can get forwarded messages. + + * If you want to *remove* a model from the list, it's usually better to just + *disable* its check box instead of deleting it, because that record might + be used by other modules. + +Usage +===== + +To use this module, you need to: + +* Go to any view that has a message thread. +* Press *Forward* (the button with a curved arrow pointing to the right). +* Modify the subject if you wish. +* If you want to forward the message to an *object*, choose it from the + selector. +* If you want to forward the message to some partner(s), add them in the + selector. +* Modify the message if you want. +* Add attachments if you want. +* If the message contains attachments, you can turn on the *Move attachments* + option, and those will get attached to the new object. + + You will need to install the *document* module and have at least *User* + permissions for *Knowledge* to see the effect. + +.. info:: + Technical note: Internally, forwarded messages are modified copies of + original ones, but attachments are references to the exact originals to + avoid duplicating disk space. Keep that in mind when managing permissions. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/205/8.0 + +For further information, please visit: + +* https://www.odoo.com/forum/help-1 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. In +case of trouble, please check there if your issue has already been reported. If +you spotted it first, help us smashing it by providing a detailed and welcomed +feedback `here +`_. + + +Credits +======= + +Contributors +------------ + +* Jairo Llopis + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/mail_forward/__init__.py b/mail_forward/__init__.py new file mode 100644 index 00000000..65738b52 --- /dev/null +++ b/mail_forward/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/mail_forward/__openerp__.py b/mail_forward/__openerp__.py new file mode 100644 index 00000000..302a8e1f --- /dev/null +++ b/mail_forward/__openerp__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Message Forward", + "summary": "Add option to forward messages", + "version": "8.0.7.0.0", + "category": "Social Network", + "website": "https://grupoesoc.es", + "author": "Grupo ESOC Ingeniería de Servicios, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "depends": [ + "mail", + "web", + ], + "data": [ + "views/assets.xml", + "views/compose_message.xml", + "views/res_request_link.xml", + ], + "qweb": [ + "static/src/xml/mail_forward.xml", + ], +} diff --git a/mail_forward/i18n/es.po b/mail_forward/i18n/es.po new file mode 100644 index 00000000..6541e431 --- /dev/null +++ b/mail_forward/i18n/es.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_forward +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-02 09:15+0000\n" +"PO-Revision-Date: 2015-11-02 10:19+0100\n" +"Last-Translator: Jairo Llopis \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"Language: es\n" +"X-Generator: Poedit 1.8.5\n" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:25 +#, python-format +msgid "(No subject)" +msgstr "(Sin asunto)" + +#. module: mail_forward +#: help:res.request.link,mail_forward_target:0 +msgid "Allow to forward mails to this model." +msgstr "Permitir reenviar correos a este modelo." + +#. module: mail_forward +#: help:mail_forward.compose_message,move_attachments:0 +msgid "Attachments will be assigned to the chosen destination object and you will be able to pick them from its 'Attachments' button, but they will not be there for the current object if any. In any case you can always open it from the message itself." +msgstr "Los adjuntos se asignarán al objeto de destino escogido y podrá escogerlos desde el botón 'Adjuntos', pero desaparecerán del objeto en el que estén actualmente (si están en alguno). En cualquier caso, siempre podrá abrirlos desde el propio mensaje." + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:47 +#, python-format +msgid "CC: " +msgstr "CC: " + +#. module: mail_forward +#: field:mail_forward.compose_message,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_forward +#: field:mail_forward.compose_message,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:38 +#, python-format +msgid "Date: " +msgstr "Fecha: " + +#. module: mail_forward +#: field:mail_forward.compose_message,destination_object_id:0 +msgid "Destination object" +msgstr "Objeto de destino" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:16 +#, python-format +msgid "FWD" +msgstr "RV" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/xml/mail_forward.xml:10 +#, python-format +msgid "Forward" +msgstr "Reenviar" + +#. module: mail_forward +#: model:ir.actions.act_window,name:mail_forward.compose_action +msgid "Forward Email" +msgstr "Reenviar correo electrónico" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:36 +#, python-format +msgid "Forwarded message" +msgstr "Mensaje reenviado" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:37 +#, python-format +msgid "From: " +msgstr "De: " + +#. module: mail_forward +#: field:mail_forward.compose_message,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_forward +#: field:mail_forward.compose_message,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_forward +#: field:mail_forward.compose_message,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_forward +#: field:res.request.link,mail_forward_target:0 +msgid "Mail forward target" +msgstr "Objetivo al reenviar" + +#. module: mail_forward +#: field:mail_forward.compose_message,move_attachments:0 +msgid "Move attachments" +msgstr "Mover adjuntos" + +#. module: mail_forward +#: help:mail_forward.compose_message,destination_object_id:0 +msgid "Object where the forwarded message will be attached" +msgstr "Objeto al que se añadirá el mensaje reenviado" + +#. module: mail_forward +#: field:mail_forward.compose_message,original_wizard_id:0 +msgid "Original message compose wizard" +msgstr "Asistente original de composición de mensajes" + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:41 +#, python-format +msgid "Subject: " +msgstr "Asunto: " + +#. module: mail_forward +#. openerp-web +#: code:addons/mail_forward/static/src/js/mail_forward.js:44 +#, python-format +msgid "To: " +msgstr "Para: " + +#. module: mail_forward +#: view:mail_forward.compose_message:mail_forward.compose_form +msgid "" +"{\n" +" 'invisible': [('destination_object_id', '=', False)]\n" +" }" +msgstr "" +"{\n" +" 'invisible': [('destination_object_id', '=', False)]\n" +" }" + +#. module: mail_forward +#: view:mail_forward.compose_message:mail_forward.compose_form +msgid "" +"{\n" +" 'required': [('destination_object_id', '=', False)]\n" +" }" +msgstr "" +"{\n" +" 'required': [('destination_object_id', '=', False)]\n" +" }" diff --git a/mail_forward/models/__init__.py b/mail_forward/models/__init__.py new file mode 100644 index 00000000..3faf4bfa --- /dev/null +++ b/mail_forward/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import compose_message, res_request_link diff --git a/mail_forward/models/compose_message.py b/mail_forward/models/compose_message.py new file mode 100644 index 00000000..d6511e4d --- /dev/null +++ b/mail_forward/models/compose_message.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models + + +class MailForwardComposeMessage(models.TransientModel): + """Allow forwarding a message. + + It duplicates the message and optionally attaches it to another object + of the database and sends it to another recipients than the original one. + """ + _name = "mail_forward.compose_message" + _inherits = {"mail.compose.message": "original_wizard_id"} + + @api.model + def default_get(self, fields): + """Fix default values. + + Sometimes :meth:`openerp.addons.mail.mail_compose_message + .mail_compose_message.default_get` overwrites the default value + for the ``subject`` field, even when it gets the right default value + from the context. + + This method fixes that by getting it from the context if available. + """ + result = self.original_wizard_id.default_get(fields) + + if "subject" in result and "default_subject" in self.env.context: + result["subject"] = self.env.context["default_subject"] + + return result + + @api.model + def _get_model_selection(self): + """Get allowed models and their names.""" + model_objs = self.env["res.request.link"].search( + [("mail_forward_target", "=", True)], + order="name") + return [(m.object, m.name) for m in model_objs] + + @api.one + @api.onchange("destination_object_id") + def change_destination_object(self): + """Update some fields for the new message.""" + if self.destination_object_id: + self.model = self.destination_object_id._name + self.res_id = self.destination_object_id.id + + model_name = (self.env["ir.model"] + .search([("model", "=", self.model)]) + .name) + record_name = self.destination_object_id.name_get()[0][1] + if model_name: + record_name = "%s %s" % (model_name, record_name) + + self.record_name = record_name + else: + self.model = self.res_id = self.record_name = False + + @api.one + def send_mail(self): + """Send mail and execute the attachment relocation if needed.""" + # Let the original wizard do de hard work + result = self.original_wizard_id.send_mail() + + # Relocate attachments if needed + if (self.move_attachments and + self.model and + self.res_id and + self.attachment_ids): + for attachment in self.attachment_ids: + attachment.res_model = self.model + attachment.res_id = self.res_id + + return result + + destination_object_id = fields.Reference( + _get_model_selection, + "Destination object", + help="Object where the forwarded message will be attached") + + move_attachments = fields.Boolean( + "Move attachments", + help="Attachments will be assigned to the chosen destination " + "object and you will be able to pick them from its " + "'Attachments' button, but they will not be there for " + "the current object if any. In any case you can always " + "open it from the message itself.") + + original_wizard_id = fields.Many2one( + "mail.compose.message", + "Original message compose wizard", + delegate=True, + ondelete="cascade", + required=True) diff --git a/mail_forward/models/res_request_link.py b/mail_forward/models/res_request_link.py new file mode 100644 index 00000000..e5d4dc7a --- /dev/null +++ b/mail_forward/models/res_request_link.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import fields, models + + +class ResRequestLink(models.Model): + _inherit = "res.request.link" + + mail_forward_target = fields.Boolean( + default=True, + index=True, + help="Allow to forward mails to this model.") diff --git a/mail_forward/static/description/icon.png b/mail_forward/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c09dc0f393895ac03d0c58bf9c94149ac20a20 GIT binary patch literal 1881 zcmV-f2d4OmP)`1`(!@lfCcf~Nh!;qR#tYSuihv*x6{12=BmqiLYtVo+L{JJ5E48FowzPYE zac0PLnCE%U>^`&e%lzGMP*!lgVT-6E+PcN6;+}XU7W!ia0Zs+xSBnjbhhIG+=M@2S^M+%;uykOTC*t;P2n8; z8zEaQww0~7w4acUT|=0u662}3rU4n4K)bwKjE-I1Pn1rTbp)=$+Y7|Xlrn?k#hU&2 zwk_+rzPw+cwYZq@5n6|OFMia>zeVF@Ck568E(_cpIMDA2NVQ7{M|6uZg@2AdljC5^ z13wDPE<}KS_LFW=P9J?n$H6`nc(iUIx@{9-3O-%p$j|UBOP=tlAqvrL8{lh-1$p7f z%AhfXHxUjkf*AVPYKRS7Ni5&B!PYRGBq$68vq zP&{?g;Z*!_$PP7`cMN#{9`W10o9#!k?UeZON}SN|{{2`(>&EU6zoEDd`R0HQO&Hc#SirDK};+g z+dqrS>NxxsFQ_B2`AnLv$EBX!C7e{Q6#J{aBXM{(eur1rmDqe|G2f3r;N-d-X)dju z_&$#8x$silhF8{|VoJBS$R5G!x*cjBVcOyA-s|z0`Ip*}Tt5-lVME1zV@~T} zduPZrE)d(5qbdSbm0claPsqu*tmJyP{SwE{*NHJ;xws24r7XUJGfS?|d!&AnSa)8U z=*Sjv@_*8Jjkq;5Rg9J)3Zk7rYFjgD?aDf7?Zp9nvMbzB1?g}${+Hm~9L_WRwdi4T zG=3`WOL(6r_qG;A5Lkgb5*_`uxUX{DSSc>frR4E9V&|rpMH7TLDBPIn@Vz*#%z=in zTC8@f@^uKGQ#@<2sDgC(usDjXa(-X?-X_x$3;3Yw{5&icco`!R1YUuEBxEAshsyVX zjf!K%ZhJ}|HsiSoagI!oPKHw7ExB2MOgqWc(Nvj$j zP~$>RAJ*W}1V8qxr;FZ5K{}j;oh9jXY*zi_m6r7O;(olWrgR%E2(h}juOzMR>f-Y? zr8y&gM&Wk#R-26%gxH{_4#2Lpuz9eR;*OD&v@TSC$6_o5A#Ni|twQb<*RBWUENSym zvksp!uamJ6q{BL~K&lFDxAYC)Gx#zdPl$Ji1@1DeVC)2e*GWHD<$AoTB(AqfpEAEo zP5Y=y7)wEj6LqQUD|7fgJ}#bA^hR-mMXC@1zfi*t!vw}w5MqORUWp%dSnm?+u$h-2 zO<7_+D0X$v5!;oz*(q*=y=Vw=*Gf|a>F`}~ePv6Hab7D<4qjJdoI|5&g23PLdVEKG zyywd-&c!=bze>;;nkWcyK52s}%uNG^ox>I46v(&Re~%4K6{N#$c(d4}x?Ef+Dq@FN z<-Hj1!`7jDHw4Dz*wW2yn-=#!ohmK^AHsidC+@beDy|WXiy$2iier{LM(xP3XnK{k zj}r!^na(j45$uwTP7WATs@VUdgq+MHi;= zP)Wcaa|AudT5@nF$~mUzhJ{WUw3DP|X*sbHzP^RFsWPD{(w!<7>D4V)pa zEevzlN4EHMl%Al}IpJoTxYkg3xNl~`1bo1NYdPmidq*(aV73SE89;}_c)55wK^A7= zwqHEBXGLn^m%Xxeg1CM?jz?pRnt=a`|5+jr88VqnCX>lzGMP*!lgVT<6UqMpWw_Zz TgUb8t00000NkvXXu0mjfPNa@- literal 0 HcmV?d00001 diff --git a/mail_forward/static/src/css/mail_forward.css b/mail_forward/static/src/css/mail_forward.css new file mode 100644 index 00000000..6eabe491 --- /dev/null +++ b/mail_forward/static/src/css/mail_forward.css @@ -0,0 +1,12 @@ +/* © 2014-2015 Grupo ESOC + * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + */ + +.openerp .oe_mail .oe_msg .oe_msg_icons .oe_forward:hover a { + color: #1FC0FF; + text-shadow: 0px 1px #184FC5, + 0px -1px #184FC5, + -1px 0px #184FC5, + 1px 0px #184FC5, + 0px 3px 3px rgba(0, 0, 0, 0.1); +} diff --git a/mail_forward/static/src/js/mail_forward.js b/mail_forward/static/src/js/mail_forward.js new file mode 100644 index 00000000..2629a435 --- /dev/null +++ b/mail_forward/static/src/js/mail_forward.js @@ -0,0 +1,77 @@ +/* © 2014-2015 Grupo ESOC + * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + */ + +"use strict"; +openerp.mail_forward = function (instance) { + var _t = instance.web._t; + instance.mail.ThreadMessage.include({ + bind_events: function () { + this._super.apply(this, arguments); + this.$('.oe_forward').on('click', this.on_message_forward); + }, + + on_message_forward: function () { + // Generate email subject as possible from record_name and subject + var subject = [_t("FWD")]; + if (this.record_name && (this.show_record_name || + this.parent_id)) + { + subject.push(this.record_name); + } + if (this.subject) { + subject.push(this.subject); + } else if (subject.length < 2) { + subject.push(_t("(No subject)")); + } + + // Get only ID from the attachments + var attachment_ids = []; + for (var n in this.attachment_ids) { + attachment_ids.push(this.attachment_ids[n].id); + } + + // Get necessary fields from the forwarded message + var header = [ + "----------" + _t("Forwarded message") + "----------", + _t("From: ") + this.author_id[1], + _t("Date: ") + this.date, + ]; + if (this.subject) { + header.push(_t("Subject: ") + this.subject); + } + if (this.email_to) { + header.push(_t("To: ") + this.email_to); + } + if (this.email_cc) { + header.push(_t("CC: ") + this.email_cc); + } + header = header.map(_.str.escapeHTML).join("
") + + var context = { + default_attachment_ids: attachment_ids, + default_body: + "

" + header + "


" + + this.body, + default_model: this.model, + default_res_id: this.res_id, + default_subject: subject.join(": "), + }; + + if (this.model && this.res_id) { + context.default_destination_object_id = + [this.model, this.res_id].join(); + } + + // Get the action data and execute it to open the composer wizard + var do_action = this.do_action; + this.rpc("/web/action/load", { + "action_id": "mail_forward.compose_action", + }) + .done(function(action) { + action.context = context; + do_action(action); + }); + } + }); +}; diff --git a/mail_forward/static/src/xml/mail_forward.xml b/mail_forward/static/src/xml/mail_forward.xml new file mode 100644 index 00000000..a3c97daa --- /dev/null +++ b/mail_forward/static/src/xml/mail_forward.xml @@ -0,0 +1,14 @@ + + + + + diff --git a/mail_forward/tests/__init__.py b/mail_forward/tests/__init__.py new file mode 100644 index 00000000..2a1e976b --- /dev/null +++ b/mail_forward/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_compose_message diff --git a/mail_forward/tests/test_compose_message.py b/mail_forward/tests/test_compose_message.py new file mode 100644 index 00000000..d331cf91 --- /dev/null +++ b/mail_forward/tests/test_compose_message.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +# © 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from os import path +from openerp.tests.common import TransactionCase + + +class ForwardMailCase(TransactionCase): + def setUp(self, *args, **kwargs): + super(ForwardMailCase, self).setUp(*args, **kwargs) + self.compose = self.env["mail.compose.message"].create({}) + self.fwd = self.env["mail_forward.compose_message"].create({ + "original_wizard_id": self.compose.id, + }) + self.partner = self.env["res.partner"].create({"name": __file__}) + self.attachment = self.env["ir.attachment"].create({ + "name": "Testing source", + "datas_fname": path.basename(__file__), + "type": "url", + "url": "file://%s" % __file__, + }) + + def test_subject(self): + """Test correct subject is used.""" + self.compose.subject = "Bad subject" + good = "Good subject" + defaults = self.fwd.with_context(default_subject=good).default_get( + ["subject"]) + self.assertEqual(defaults["subject"], good) + + def test_change_destination(self): + """Test what happens when changing the destination.""" + model = self.env["ir.model"].search( + [("model", "=", self.partner._name)]) + + # Set a partner as destination object + self.fwd.destination_object_id = self.partner + self.fwd.change_destination_object() + + self.assertEqual(self.fwd.model, self.partner._name) + self.assertEqual(self.fwd.res_id, self.partner.id) + self.assertEqual(self.fwd.record_name, + "%s %s" % (model.name, self.partner.name)) + + # Remove the destination object + self.fwd.destination_object_id = False + self.fwd.change_destination_object() + + self.assertFalse(self.fwd.model) + self.assertFalse(self.fwd.res_id) + self.assertFalse(self.fwd.record_name) + + def test_move_attachments(self): + """Attachments moved correctly.""" + self.fwd.attachment_ids |= self.attachment + self.fwd.destination_object_id = self.partner + self.fwd.change_destination_object() + self.fwd.body = "body" + self.fwd.subject = "subject" + self.fwd.move_attachments = True + self.fwd.send_mail() + + self.assertEqual(self.attachment.res_model, self.partner._name) + self.assertEqual(self.attachment.res_id, self.partner.id) diff --git a/mail_forward/views/assets.xml b/mail_forward/views/assets.xml new file mode 100644 index 00000000..7c04b70d --- /dev/null +++ b/mail_forward/views/assets.xml @@ -0,0 +1,21 @@ + + + + + + + +