From 7b61133b51cd5a68929ed81d7b39704e73229f0c Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Thu, 23 Jun 2016 15:14:10 -0400 Subject: [PATCH 01/20] Rename email_template_multi_report to mail_template_multi_report --- mail_template_multi_report/README.rst | 73 ++++++++++++++ mail_template_multi_report/__init__.py | 5 + mail_template_multi_report/__openerp__.py | 22 +++++ mail_template_multi_report/i18n/fr.po | 96 +++++++++++++++++++ mail_template_multi_report/models/__init__.py | 6 ++ .../models/email_template.py | 60 ++++++++++++ .../models/email_template_report_line.py | 36 +++++++ mail_template_multi_report/tests/__init__.py | 5 + .../tests/test_email_template.py | 96 +++++++++++++++++++ .../views/email_template.xml | 21 ++++ 10 files changed, 420 insertions(+) create mode 100644 mail_template_multi_report/README.rst create mode 100644 mail_template_multi_report/__init__.py create mode 100644 mail_template_multi_report/__openerp__.py create mode 100644 mail_template_multi_report/i18n/fr.po create mode 100644 mail_template_multi_report/models/__init__.py create mode 100644 mail_template_multi_report/models/email_template.py create mode 100644 mail_template_multi_report/models/email_template_report_line.py create mode 100644 mail_template_multi_report/tests/__init__.py create mode 100644 mail_template_multi_report/tests/test_email_template.py create mode 100644 mail_template_multi_report/views/email_template.xml diff --git a/mail_template_multi_report/README.rst b/mail_template_multi_report/README.rst new file mode 100644 index 00000000..596761b4 --- /dev/null +++ b/mail_template_multi_report/README.rst @@ -0,0 +1,73 @@ +.. 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 + +============================ +Email Template Multi Reports +============================ + +This module adds the option to generate more than one report in an email template. + +Also, this module adds the options to attach a report to the email depending on a condition. + +Configuration +============= + +To configure this module, you need to: + +1. Go to Settings -> Technical -> Email -> Templates +2. In the email template form view, go to the Advanced Settings tab. +3. Add extra reports in the Other Reports field. + +The other reports added to the template do not support legacy reports such as rml. +Only qweb reports are available for now. + +If the field Condition is filled, then the report will attached depending on +the evaluation of the condition. + +Usage +===== + +Open a email template wizard and select your template. Your extra reports are added automatically. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch} + + +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. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* David Dufresne + + +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_template_multi_report/__init__.py b/mail_template_multi_report/__init__.py new file mode 100644 index 00000000..3e7cdd47 --- /dev/null +++ b/mail_template_multi_report/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models diff --git a/mail_template_multi_report/__openerp__.py b/mail_template_multi_report/__openerp__.py new file mode 100644 index 00000000..d9e76c83 --- /dev/null +++ b/mail_template_multi_report/__openerp__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Email Template Multi Report', + 'version': '8.0.1.0.0', + 'category': 'Marketing', + 'summary': 'Multiple Reports in Email Templates', + 'author': 'Savoir-faire Linux,Odoo Community Association (OCA)', + 'website': 'http://www.savoirfairelinux.com', + 'license': 'AGPL-3', + 'depends': [ + 'email_template', + ], + 'data': [ + 'views/email_template.xml', + ], + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/mail_template_multi_report/i18n/fr.po b/mail_template_multi_report/i18n/fr.po new file mode 100644 index 00000000..eb3c3738 --- /dev/null +++ b/mail_template_multi_report/i18n/fr.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * email_template_multi_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-23 18:31+0000\n" +"PO-Revision-Date: 2016-06-23 14:35-0500\n" +"Last-Translator: David Dufresne \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" +"X-Generator: Poedit 1.5.4\n" + +#. module: email_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" +"Une expression évaluée pour déterminer si le rapport doit être attaché au " +"courriel. Si vide, le rapport sera toujours attaché." + +#. module: email_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "Condition" + +#. module: email_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: email_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: email_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "Modèle de courriel" + +#. module: email_template_multi_report +#: model:ir.model,name:email_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "Ligne de rapport de modèle de courriel" + +#. module: email_template_multi_report +#: model:ir.model,name:email_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Modèles de courriel" + +#. module: email_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: email_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Mis-à-jour par" + +#. module: email_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Mis-à-jour le" + +#. module: email_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" +"Nom à utiliser pour le fichier de rapport généré (peut contenir des " +"variables)\n" +"L'extension peut être omise: celle du rapport sera utilisée." + +#. module: email_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "Rapport facultatif à imprimer et à joindre" + +#. module: email_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "Autres rapports" + +#. module: email_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "Nom du fichier du rapport" diff --git a/mail_template_multi_report/models/__init__.py b/mail_template_multi_report/models/__init__.py new file mode 100644 index 00000000..6a9108c6 --- /dev/null +++ b/mail_template_multi_report/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import email_template +from . import email_template_report_line diff --git a/mail_template_multi_report/models/email_template.py b/mail_template_multi_report/models/email_template.py new file mode 100644 index 00000000..491d5fcd --- /dev/null +++ b/mail_template_multi_report/models/email_template.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import base64 + +from openerp import api, fields, models +from openerp.tools.safe_eval import safe_eval + + +class EmailTemplate(models.Model): + + _inherit = 'email.template' + + report_line_ids = fields.One2many( + 'email.template.report.line', 'template_id', string='Other Reports') + + @api.model + def generate_email_batch(self, template_id, res_ids, fields=None): + results = super(EmailTemplate, self).generate_email_batch( + template_id, res_ids, fields=fields) + + template = self.browse(template_id) + + for report_line in template.report_line_ids: + records = self.env[template.model_id.model].browse(res_ids) + + for rec in records: + condition = report_line.condition + + if condition and condition.strip(): + condition_result = self.render_template( + condition, template.model, rec.id) + + if not condition_result or not safe_eval(condition_result): + continue + + report_name = self.render_template( + report_line.report_name, template.model, rec.id) + + report = report_line.report_template_id + report_service = report.report_name + + result = self.env['report'].get_pdf(rec, report_service) + report_format = 'pdf' + + result = base64.b64encode(result) + + if not report_name: + report_name = 'report.' + report_service + + ext = "." + report_format + + if not report_name.endswith(ext): + report_name += ext + + results[rec.id].setdefault('attachments', []) + results[rec.id]['attachments'].append((report_name, result)) + + return results diff --git a/mail_template_multi_report/models/email_template_report_line.py b/mail_template_multi_report/models/email_template_report_line.py new file mode 100644 index 00000000..669f5997 --- /dev/null +++ b/mail_template_multi_report/models/email_template_report_line.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp import fields, models + + +class EmailTemplateReportLine(models.Model): + """Email Template Report Line""" + + _name = 'email.template.report.line' + _description = __doc__ + + template_id = fields.Many2one( + 'email.template', string='Email Template' + ) + + report_name = fields.Char( + 'Report Filename', translate=True, + help="Name to use for the generated report " + "file (may contain placeholders)\n" + "The extension can be omitted and will then come from the report type." + ) + + condition = fields.Char( + 'Condition', + help="An expression evaluated to determine if the report is " + "to be attached to the email. If blank, the report will always be " + "attached." + ) + + report_template_id = fields.Many2one( + 'ir.actions.report.xml', + 'Optional report to print and attach', + domain=[('report_type', 'in', ['qweb-html', 'qweb-pdf'])], + ) diff --git a/mail_template_multi_report/tests/__init__.py b/mail_template_multi_report/tests/__init__.py new file mode 100644 index 00000000..cd3e453f --- /dev/null +++ b/mail_template_multi_report/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_email_template diff --git a/mail_template_multi_report/tests/test_email_template.py b/mail_template_multi_report/tests/test_email_template.py new file mode 100644 index 00000000..e2c1daab --- /dev/null +++ b/mail_template_multi_report/tests/test_email_template.py @@ -0,0 +1,96 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from openerp.tests import common + + +class TestEmailTemplate(common.TransactionCase): + + def setUp(self): + super(TestEmailTemplate, self).setUp() + + self.report_view = self.env['ir.ui.view'].create({ + 'name': 'test_report_template', + 'mode': 'primary', + 'type': 'qweb', + 'arch': """\ + + + + +
+
+
+
+
+ """ + }) + + model_data = self.env['ir.model.data'].create({ + 'module': 'mail_template_multi_report', + 'model': 'ir.ui.view', + 'name': 'test_report_template', + 'res_id': self.report_view.id, + }) + + model_data.clear_caches() + + self.report = self.env['ir.actions.report.xml'].create({ + 'name': 'Test Report 1', + 'model': 'res.partner', + 'report_type': 'qweb-html', + 'report_name': 'mail_template_multi_report.test_report_template', + }) + + self.template = self.env['email.template'].create({ + 'name': 'Test Email Template', + 'model_id': self.env.ref('base.model_res_partner').id, + 'report_line_ids': [(0, 0, { + 'report_name': '${object.name}', + 'report_template_id': self.report.id, + })] + }) + + self.partner = self.env['res.partner'].create({ + 'name': 'Test Partner', + 'customer': True, + }) + + def test_01_generate_email_batch(self): + res = self.env['email.template'].generate_email_batch( + self.template.id, [self.partner.id]) + + self.assertEquals(len(res[self.partner.id]['attachments']), 1) + + def test_02_generate_email_batch_with_standard_report(self): + self.template.write({ + 'report_name': '${object.name}', + 'report_template': self.report.id, + }) + + res = self.env['email.template'].generate_email_batch( + self.template.id, [self.partner.id]) + + self.assertEquals(len(res[self.partner.id]['attachments']), 2) + + def test_03_report_condition_true(self): + self.template.report_line_ids[0].write({ + 'condition': "${object.customer}", + }) + + res = self.env['email.template'].generate_email_batch( + self.template.id, [self.partner.id]) + + self.assertEquals(len(res[self.partner.id]['attachments']), 1) + + def test_04_report_condition_false(self): + self.template.report_line_ids[0].write({ + 'condition': "${object.supplier}", + }) + + res = self.env['email.template'].generate_email_batch( + self.template.id, [self.partner.id]) + + res[self.partner.id].setdefault('attachments', []) + self.assertEquals(len(res[self.partner.id]['attachments']), 0) diff --git a/mail_template_multi_report/views/email_template.xml b/mail_template_multi_report/views/email_template.xml new file mode 100644 index 00000000..939cc044 --- /dev/null +++ b/mail_template_multi_report/views/email_template.xml @@ -0,0 +1,21 @@ + + + + + email.template.form + email.template + + + + + + + + + + + + + + + From 781bedaa3875048e051b725573e480789dcad4ff Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Thu, 23 Jun 2016 15:16:01 -0400 Subject: [PATCH 02/20] Add bug tracker --- mail_template_multi_report/README.rst | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/mail_template_multi_report/README.rst b/mail_template_multi_report/README.rst index 596761b4..b31e3596 100644 --- a/mail_template_multi_report/README.rst +++ b/mail_template_multi_report/README.rst @@ -3,7 +3,7 @@ :alt: License: AGPL-3 ============================ -Email Template Multi Reports +Mail Template Multi Reports ============================ This module adds the option to generate more than one report in an email template. @@ -19,9 +19,6 @@ To configure this module, you need to: 2. In the email template form view, go to the Advanced Settings tab. 3. Add extra reports in the Other Reports field. -The other reports added to the template do not support legacy reports such as rml. -Only qweb reports are available for now. - If the field Condition is filled, then the report will attached depending on the evaluation of the condition. @@ -34,6 +31,12 @@ Open a email template wizard and select your template. Your extra reports are ad :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch} +Known issues / Roadmap +====================== + +The other reports added to the template do not support legacy reports such as rml. +Only qweb reports are available for now. + Bug Tracker =========== From 4515824e965112f12a7239f8481701a035427e27 Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Thu, 23 Jun 2016 16:50:57 -0400 Subject: [PATCH 03/20] Add missing access rights --- mail_template_multi_report/security/ir.model.access.csv | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mail_template_multi_report/security/ir.model.access.csv diff --git a/mail_template_multi_report/security/ir.model.access.csv b/mail_template_multi_report/security/ir.model.access.csv new file mode 100644 index 00000000..53d5aa61 --- /dev/null +++ b/mail_template_multi_report/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_email_template_report_line,email.template,model_email_template_report_line,base.group_user,1,1,1,0 +access_email_template_report_line_system,email.template system,model_email_template_report_line,base.group_system,1,1,1,1 \ No newline at end of file From 0f0f1c5e680d39a3b664859670fcc576545b1c95 Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 27 Jun 2016 08:54:52 -0400 Subject: [PATCH 04/20] Fix README file --- mail_template_multi_report/README.rst | 2 +- mail_template_multi_report/security/ir.model.access.csv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mail_template_multi_report/README.rst b/mail_template_multi_report/README.rst index b31e3596..c6235e54 100644 --- a/mail_template_multi_report/README.rst +++ b/mail_template_multi_report/README.rst @@ -29,7 +29,7 @@ Open a email template wizard and select your template. Your extra reports are ad .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch} + :target: https://runbot.odoo-community.org/runbot/social/8.0 Known issues / Roadmap ====================== diff --git a/mail_template_multi_report/security/ir.model.access.csv b/mail_template_multi_report/security/ir.model.access.csv index 53d5aa61..a198aafd 100644 --- a/mail_template_multi_report/security/ir.model.access.csv +++ b/mail_template_multi_report/security/ir.model.access.csv @@ -1,3 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_email_template_report_line,email.template,model_email_template_report_line,base.group_user,1,1,1,0 -access_email_template_report_line_system,email.template system,model_email_template_report_line,base.group_system,1,1,1,1 \ No newline at end of file +access_email_template_report_line_system,email.template system,model_email_template_report_line,base.group_system,1,1,1,1 From 156d469fd7553e72d44f377c26848f972b0ecded Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 27 Jun 2016 09:45:27 -0400 Subject: [PATCH 05/20] Move variables outside for loop --- mail_template_multi_report/models/email_template.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/mail_template_multi_report/models/email_template.py b/mail_template_multi_report/models/email_template.py index 491d5fcd..ba1712af 100644 --- a/mail_template_multi_report/models/email_template.py +++ b/mail_template_multi_report/models/email_template.py @@ -21,6 +21,7 @@ class EmailTemplate(models.Model): template_id, res_ids, fields=fields) template = self.browse(template_id) + report_ext = '.pdf' for report_line in template.report_line_ids: records = self.env[template.model_id.model].browse(res_ids) @@ -42,17 +43,13 @@ class EmailTemplate(models.Model): report_service = report.report_name result = self.env['report'].get_pdf(rec, report_service) - report_format = 'pdf' - result = base64.b64encode(result) if not report_name: report_name = 'report.' + report_service - ext = "." + report_format - - if not report_name.endswith(ext): - report_name += ext + if not report_name.endswith(report_ext): + report_name += report_ext results[rec.id].setdefault('attachments', []) results[rec.id]['attachments'].append((report_name, result)) From 62b03ad2af6604a6777c407d65f577adb039086e Mon Sep 17 00:00:00 2001 From: dufresnedavid Date: Mon, 27 Jun 2016 15:52:15 -0400 Subject: [PATCH 06/20] Add missing file to __openerp__.py --- mail_template_multi_report/__openerp__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mail_template_multi_report/__openerp__.py b/mail_template_multi_report/__openerp__.py index d9e76c83..ff0f67aa 100644 --- a/mail_template_multi_report/__openerp__.py +++ b/mail_template_multi_report/__openerp__.py @@ -14,6 +14,7 @@ 'email_template', ], 'data': [ + 'security/ir.model.access.csv', 'views/email_template.xml', ], 'installable': True, From b998bc8cd015284fcb27a46f1b264c352ca7b569 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 3 Jul 2016 14:52:38 -0400 Subject: [PATCH 07/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/ca.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/da.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/de.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/en.po | 104 ++++++++++++++++++++++ mail_template_multi_report/i18n/es.po | 104 ++++++++++++++++++++++ mail_template_multi_report/i18n/es_CO.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/fr.po | 65 ++++++++------ mail_template_multi_report/i18n/pt_BR.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/sl.po | 107 +++++++++++++++++++++++ 9 files changed, 868 insertions(+), 27 deletions(-) create mode 100644 mail_template_multi_report/i18n/ca.po create mode 100644 mail_template_multi_report/i18n/da.po create mode 100644 mail_template_multi_report/i18n/de.po create mode 100644 mail_template_multi_report/i18n/en.po create mode 100644 mail_template_multi_report/i18n/es.po create mode 100644 mail_template_multi_report/i18n/es_CO.po create mode 100644 mail_template_multi_report/i18n/pt_BR.po create mode 100644 mail_template_multi_report/i18n/sl.po diff --git a/mail_template_multi_report/i18n/ca.po b/mail_template_multi_report/i18n/ca.po new file mode 100644 index 00000000..30ef617e --- /dev/null +++ b/mail_template_multi_report/i18n/ca.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Plantilles de correu electrònic" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/da.po b/mail_template_multi_report/i18n/da.po new file mode 100644 index 00000000..7f59bde3 --- /dev/null +++ b/mail_template_multi_report/i18n/da.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Hans Henrik Gabelgaard , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Hans Henrik Gabelgaard , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Email skabeloner" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/de.po b/mail_template_multi_report/i18n/de.po new file mode 100644 index 00000000..4a337845 --- /dev/null +++ b/mail_template_multi_report/i18n/de.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Rudolf Schnapka , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Angelegt durch" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Angelegt am" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Email-Vorlagen" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/en.po b/mail_template_multi_report/i18n/en.po new file mode 100644 index 00000000..986a9b72 --- /dev/null +++ b/mail_template_multi_report/i18n/en.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "Condition" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "Email Template" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "Email Template Report Line" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Email Templates" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "Optional report to print and attach" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "Other Reports" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "Report Filename" diff --git a/mail_template_multi_report/i18n/es.po b/mail_template_multi_report/i18n/es.po new file mode 100644 index 00000000..15a2cc2a --- /dev/null +++ b/mail_template_multi_report/i18n/es.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +# Carles Antoli , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Carles Antoli , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado el" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Plantillas Correo Electrónico" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_CO.po b/mail_template_multi_report/i18n/es_CO.po new file mode 100644 index 00000000..e6d0de9d --- /dev/null +++ b/mail_template_multi_report/i18n/es_CO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# John Toro , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: John Toro , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Plantilla de E-mails" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/fr.po b/mail_template_multi_report/i18n/fr.po index eb3c3738..6a07cad6 100644 --- a/mail_template_multi_report/i18n/fr.po +++ b/mail_template_multi_report/i18n/fr.po @@ -1,22 +1,24 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * email_template_multi_report -# +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-23 18:31+0000\n" -"PO-Revision-Date: 2016-06-23 14:35-0500\n" -"Last-Translator: David Dufresne \n" -"Language-Team: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"X-Generator: Poedit 1.5.4\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: help:email.template.report.line,condition:0 msgid "" "An expression evaluated to determine if the report is to be attached to the " @@ -25,72 +27,81 @@ msgstr "" "Une expression évaluée pour déterminer si le rapport doit être attaché au " "courriel. Si vide, le rapport sera toujours attaché." -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,condition:0 msgid "Condition" msgstr "Condition" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" msgstr "Créé par" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" msgstr "Créé le" -#. module: email_template_multi_report +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 msgid "Email Template" msgstr "Modèle de courriel" -#. module: email_template_multi_report -#: model:ir.model,name:email_template_multi_report.model_email_template_report_line +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line msgid "Email Template Report Line" msgstr "Ligne de rapport de modèle de courriel" -#. module: email_template_multi_report -#: model:ir.model,name:email_template_multi_report.model_email_template +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template msgid "Email Templates" msgstr "Modèles de courriel" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" msgstr "ID" -#. module: email_template_multi_report +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" msgstr "Mis-à-jour par" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" msgstr "Mis-à-jour le" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 msgid "" "Name to use for the generated report file (may contain placeholders)\n" "The extension can be omitted and will then come from the report type." msgstr "" -"Nom à utiliser pour le fichier de rapport généré (peut contenir des " -"variables)\n" +"Nom à utiliser pour le fichier de rapport généré (peut contenir des variables)\n" "L'extension peut être omise: celle du rapport sera utilisée." -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,report_template_id:0 msgid "Optional report to print and attach" msgstr "Rapport facultatif à imprimer et à joindre" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template,report_line_ids:0 msgid "Other Reports" msgstr "Autres rapports" -#. module: email_template_multi_report +#. module: mail_template_multi_report #: field:email.template.report.line,report_name:0 msgid "Report Filename" msgstr "Nom du fichier du rapport" diff --git a/mail_template_multi_report/i18n/pt_BR.po b/mail_template_multi_report/i18n/pt_BR.po new file mode 100644 index 00000000..583ae37a --- /dev/null +++ b/mail_template_multi_report/i18n/pt_BR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Armando Vulcano Junior , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Armando Vulcano Junior , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Modelos de Email" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/sl.po b/mail_template_multi_report/i18n/sl.po new file mode 100644 index 00000000..3789a1fe --- /dev/null +++ b/mail_template_multi_report/i18n/sl.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 01:07+0000\n" +"PO-Revision-Date: 2016-06-30 01:07+0000\n" +"Last-Translator: Matjaž Mozetič , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" +"Izraz za določitev, če naj bo poročilo pripeto e-pošti. Če ostane prazno, bo" +" poročilo vedno pripeto." + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "Pogoj" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "E-poštna predloga" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "Postavka poročila e-poštne predloge" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "E-poštne predloge" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" +"Naziv za ustvarjeno datoteko poročila (vsebuje lahko držalnike prostora)\n" +"Razširitev se lahko prezre in tako pride iz tipa poročila." + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "Opcijsko poročilo za tiskanje in pripenjanje" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "Druga poročila" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "Naziv datoteke poročila" From 51fefd684b8a5deef647b4a40106d30cb7292aea Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 14 Aug 2016 03:56:48 -0400 Subject: [PATCH 08/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/fr.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mail_template_multi_report/i18n/fr.po b/mail_template_multi_report/i18n/fr.po index 6a07cad6..9120039c 100644 --- a/mail_template_multi_report/i18n/fr.po +++ b/mail_template_multi_report/i18n/fr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# dglucose , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-08-08 00:45+0000\n" +"PO-Revision-Date: 2016-08-08 00:45+0000\n" +"Last-Translator: dglucose , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +46,7 @@ msgstr "Créé le" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom à afficher" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 From f15ddaf4f0dbff7bd7c8b4c8eddb5d6d3ba9afad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?= Date: Mon, 15 Aug 2016 22:15:19 +0200 Subject: [PATCH 09/20] [FIX] remove en.po that was erroneously created by transbot --- mail_template_multi_report/i18n/en.po | 104 -------------------------- 1 file changed, 104 deletions(-) delete mode 100644 mail_template_multi_report/i18n/en.po diff --git a/mail_template_multi_report/i18n/en.po b/mail_template_multi_report/i18n/en.po deleted file mode 100644 index 986a9b72..00000000 --- a/mail_template_multi_report/i18n/en.po +++ /dev/null @@ -1,104 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * mail_template_multi_report -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+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_template_multi_report -#: help:email.template.report.line,condition:0 -msgid "" -"An expression evaluated to determine if the report is to be attached to the " -"email. If blank, the report will always be attached." -msgstr "" -"An expression evaluated to determine if the report is to be attached to the " -"email. If blank, the report will always be attached." - -#. module: mail_template_multi_report -#: field:email.template.report.line,condition:0 -msgid "Condition" -msgstr "Condition" - -#. module: mail_template_multi_report -#: field:email.template.report.line,create_uid:0 -msgid "Created by" -msgstr "Created by" - -#. module: mail_template_multi_report -#: field:email.template.report.line,create_date:0 -msgid "Created on" -msgstr "Created on" - -#. module: mail_template_multi_report -#: field:email.template.report.line,display_name:0 -msgid "Display Name" -msgstr "Display Name" - -#. module: mail_template_multi_report -#: field:email.template.report.line,template_id:0 -msgid "Email Template" -msgstr "Email Template" - -#. module: mail_template_multi_report -#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line -msgid "Email Template Report Line" -msgstr "Email Template Report Line" - -#. module: mail_template_multi_report -#: model:ir.model,name:mail_template_multi_report.model_email_template -msgid "Email Templates" -msgstr "Email Templates" - -#. module: mail_template_multi_report -#: field:email.template.report.line,id:0 -msgid "ID" -msgstr "ID" - -#. module: mail_template_multi_report -#: field:email.template.report.line,__last_update:0 -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: mail_template_multi_report -#: field:email.template.report.line,write_uid:0 -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: mail_template_multi_report -#: field:email.template.report.line,write_date:0 -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: mail_template_multi_report -#: help:email.template.report.line,report_name:0 -msgid "" -"Name to use for the generated report file (may contain placeholders)\n" -"The extension can be omitted and will then come from the report type." -msgstr "" -"Name to use for the generated report file (may contain placeholders)\n" -"The extension can be omitted and will then come from the report type." - -#. module: mail_template_multi_report -#: field:email.template.report.line,report_template_id:0 -msgid "Optional report to print and attach" -msgstr "Optional report to print and attach" - -#. module: mail_template_multi_report -#: field:email.template,report_line_ids:0 -msgid "Other Reports" -msgstr "Other Reports" - -#. module: mail_template_multi_report -#: field:email.template.report.line,report_name:0 -msgid "Report Filename" -msgstr "Report Filename" From 95ba664745e9f1fba2344be250b25a96510d0dac Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 18 Sep 2016 06:07:21 -0400 Subject: [PATCH 10/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/am.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/de.po | 13 +-- mail_template_multi_report/i18n/el_GR.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/es.po | 11 ++- mail_template_multi_report/i18n/es_ES.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/fi.po | 104 +++++++++++++++++++++++ mail_template_multi_report/i18n/fr.po | 9 +- mail_template_multi_report/i18n/gl.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/it.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/nl.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/pt.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/pt_PT.po | 103 ++++++++++++++++++++++ mail_template_multi_report/i18n/tr.po | 103 ++++++++++++++++++++++ 13 files changed, 1047 insertions(+), 17 deletions(-) create mode 100644 mail_template_multi_report/i18n/am.po create mode 100644 mail_template_multi_report/i18n/el_GR.po create mode 100644 mail_template_multi_report/i18n/es_ES.po create mode 100644 mail_template_multi_report/i18n/fi.po create mode 100644 mail_template_multi_report/i18n/gl.po create mode 100644 mail_template_multi_report/i18n/it.po create mode 100644 mail_template_multi_report/i18n/nl.po create mode 100644 mail_template_multi_report/i18n/pt.po create mode 100644 mail_template_multi_report/i18n/pt_PT.po create mode 100644 mail_template_multi_report/i18n/tr.po diff --git a/mail_template_multi_report/i18n/am.po b/mail_template_multi_report/i18n/am.po new file mode 100644 index 00000000..46222c97 --- /dev/null +++ b/mail_template_multi_report/i18n/am.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/de.po b/mail_template_multi_report/i18n/de.po index 4a337845..3b8fd9ba 100644 --- a/mail_template_multi_report/i18n/de.po +++ b/mail_template_multi_report/i18n/de.po @@ -3,14 +3,15 @@ # * mail_template_multi_report # # Translators: -# Rudolf Schnapka , 2016 +# OCA Transbot , 2016 +# Ermin Trevisan , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: Rudolf Schnapka , 2016\n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: Ermin Trevisan , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Angelegt am" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Anzeigename" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Zuletzt geändert am" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/el_GR.po b/mail_template_multi_report/i18n/el_GR.po new file mode 100644 index 00000000..af825303 --- /dev/null +++ b/mail_template_multi_report/i18n/el_GR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es.po b/mail_template_multi_report/i18n/es.po index 15a2cc2a..24441a6a 100644 --- a/mail_template_multi_report/i18n/es.po +++ b/mail_template_multi_report/i18n/es.po @@ -4,14 +4,13 @@ # # Translators: # OCA Transbot , 2016 -# Carles Antoli , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: Carles Antoli , 2016\n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +43,7 @@ msgstr "Creado el" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre mostrado" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -69,7 +68,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/es_ES.po b/mail_template_multi_report/i18n/es_ES.po new file mode 100644 index 00000000..3de66a27 --- /dev/null +++ b/mail_template_multi_report/i18n/es_ES.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/fi.po b/mail_template_multi_report/i18n/fi.po new file mode 100644 index 00000000..110b0e82 --- /dev/null +++ b/mail_template_multi_report/i18n/fi.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/fr.po b/mail_template_multi_report/i18n/fr.po index 9120039c..b92b288f 100644 --- a/mail_template_multi_report/i18n/fr.po +++ b/mail_template_multi_report/i18n/fr.po @@ -4,14 +4,13 @@ # # Translators: # OCA Transbot , 2016 -# dglucose , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-08 00:45+0000\n" -"PO-Revision-Date: 2016-08-08 00:45+0000\n" -"Last-Translator: dglucose , 2016\n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +70,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/gl.po b/mail_template_multi_report/i18n/gl.po new file mode 100644 index 00000000..7bfa8488 --- /dev/null +++ b/mail_template_multi_report/i18n/gl.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/it.po b/mail_template_multi_report/i18n/it.po new file mode 100644 index 00000000..06771ef4 --- /dev/null +++ b/mail_template_multi_report/i18n/it.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/nl.po b/mail_template_multi_report/i18n/nl.po new file mode 100644 index 00000000..be635151 --- /dev/null +++ b/mail_template_multi_report/i18n/nl.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/pt.po b/mail_template_multi_report/i18n/pt.po new file mode 100644 index 00000000..92b37aa7 --- /dev/null +++ b/mail_template_multi_report/i18n/pt.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/pt_PT.po b/mail_template_multi_report/i18n/pt_PT.po new file mode 100644 index 00000000..2342b670 --- /dev/null +++ b/mail_template_multi_report/i18n/pt_PT.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/tr.po b/mail_template_multi_report/i18n/tr.po new file mode 100644 index 00000000..483fc005 --- /dev/null +++ b/mail_template_multi_report/i18n/tr.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-14 07:21+0000\n" +"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" From 940b2fe880f22ffcb105e1f54a77a10b283a7064 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 29 Nov 2016 12:40:28 -0500 Subject: [PATCH 11/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/ar.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/bg.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/bs.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/ca.po | 18 ++-- mail_template_multi_report/i18n/cs.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/da.po | 22 ++--- mail_template_multi_report/i18n/el_GR.po | 9 +- mail_template_multi_report/i18n/en_GB.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_AR.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_CL.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_CO.po | 22 ++--- mail_template_multi_report/i18n/es_CR.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_DO.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_EC.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_MX.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_PE.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_PY.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/es_VE.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/et.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/fa.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/fr_CH.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/gl.po | 6 +- mail_template_multi_report/i18n/gl_ES.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/he.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/hr.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/hr_HR.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/hu.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/id.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/ja.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/ko.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/lt.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/lv.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/mk.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/mn.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/nb.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/nl.po | 14 +-- mail_template_multi_report/i18n/nl_BE.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/pl.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/pt.po | 11 ++- mail_template_multi_report/i18n/pt_BR.po | 22 ++--- mail_template_multi_report/i18n/pt_PT.po | 8 +- mail_template_multi_report/i18n/sk.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/sr.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/sr@latin.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/sv.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/th.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/uk.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/vi.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/zh_CN.po | 103 ++++++++++++++++++++ mail_template_multi_report/i18n/zh_TW.po | 103 ++++++++++++++++++++ 50 files changed, 4290 insertions(+), 65 deletions(-) create mode 100644 mail_template_multi_report/i18n/ar.po create mode 100644 mail_template_multi_report/i18n/bg.po create mode 100644 mail_template_multi_report/i18n/bs.po create mode 100644 mail_template_multi_report/i18n/cs.po create mode 100644 mail_template_multi_report/i18n/en_GB.po create mode 100644 mail_template_multi_report/i18n/es_AR.po create mode 100644 mail_template_multi_report/i18n/es_CL.po create mode 100644 mail_template_multi_report/i18n/es_CR.po create mode 100644 mail_template_multi_report/i18n/es_DO.po create mode 100644 mail_template_multi_report/i18n/es_EC.po create mode 100644 mail_template_multi_report/i18n/es_MX.po create mode 100644 mail_template_multi_report/i18n/es_PE.po create mode 100644 mail_template_multi_report/i18n/es_PY.po create mode 100644 mail_template_multi_report/i18n/es_VE.po create mode 100644 mail_template_multi_report/i18n/et.po create mode 100644 mail_template_multi_report/i18n/fa.po create mode 100644 mail_template_multi_report/i18n/fr_CH.po create mode 100644 mail_template_multi_report/i18n/gl_ES.po create mode 100644 mail_template_multi_report/i18n/he.po create mode 100644 mail_template_multi_report/i18n/hr.po create mode 100644 mail_template_multi_report/i18n/hr_HR.po create mode 100644 mail_template_multi_report/i18n/hu.po create mode 100644 mail_template_multi_report/i18n/id.po create mode 100644 mail_template_multi_report/i18n/ja.po create mode 100644 mail_template_multi_report/i18n/ko.po create mode 100644 mail_template_multi_report/i18n/lt.po create mode 100644 mail_template_multi_report/i18n/lv.po create mode 100644 mail_template_multi_report/i18n/mk.po create mode 100644 mail_template_multi_report/i18n/mn.po create mode 100644 mail_template_multi_report/i18n/nb.po create mode 100644 mail_template_multi_report/i18n/nl_BE.po create mode 100644 mail_template_multi_report/i18n/pl.po create mode 100644 mail_template_multi_report/i18n/sk.po create mode 100644 mail_template_multi_report/i18n/sr.po create mode 100644 mail_template_multi_report/i18n/sr@latin.po create mode 100644 mail_template_multi_report/i18n/sv.po create mode 100644 mail_template_multi_report/i18n/th.po create mode 100644 mail_template_multi_report/i18n/uk.po create mode 100644 mail_template_multi_report/i18n/vi.po create mode 100644 mail_template_multi_report/i18n/zh_CN.po create mode 100644 mail_template_multi_report/i18n/zh_TW.po diff --git a/mail_template_multi_report/i18n/ar.po b/mail_template_multi_report/i18n/ar.po new file mode 100644 index 00000000..8d980931 --- /dev/null +++ b/mail_template_multi_report/i18n/ar.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/bg.po b/mail_template_multi_report/i18n/bg.po new file mode 100644 index 00000000..a445651b --- /dev/null +++ b/mail_template_multi_report/i18n/bg.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Kaloyan Naumov , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: Kaloyan Naumov , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/bs.po b/mail_template_multi_report/i18n/bs.po new file mode 100644 index 00000000..45db5273 --- /dev/null +++ b/mail_template_multi_report/i18n/bs.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/ca.po b/mail_template_multi_report/i18n/ca.po index 30ef617e..41803202 100644 --- a/mail_template_multi_report/i18n/ca.po +++ b/mail_template_multi_report/i18n/ca.po @@ -3,14 +3,14 @@ # * mail_template_multi_report # # Translators: -# Carles Antoli , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: Carles Antoli , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,12 +33,12 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creat per" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creat el" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 @@ -63,7 +63,7 @@ msgstr "Plantilles de correu electrònic" #. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 @@ -73,12 +73,12 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Darrera Actualització per" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Darrera Actualització el" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/cs.po b/mail_template_multi_report/i18n/cs.po new file mode 100644 index 00000000..c9d4e83e --- /dev/null +++ b/mail_template_multi_report/i18n/cs.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/da.po b/mail_template_multi_report/i18n/da.po index 7f59bde3..0134deaf 100644 --- a/mail_template_multi_report/i18n/da.po +++ b/mail_template_multi_report/i18n/da.po @@ -3,14 +3,14 @@ # * mail_template_multi_report # # Translators: -# Hans Henrik Gabelgaard , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: Hans Henrik Gabelgaard , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,17 +33,17 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Oprettet af" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Oprettet den" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Vist navn" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -63,22 +63,22 @@ msgstr "Email skabeloner" #. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" -msgstr "" +msgstr "Id" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Sidst ændret den" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Sidst opdateret af" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Sidst opdateret den" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/el_GR.po b/mail_template_multi_report/i18n/el_GR.po index af825303..c4380582 100644 --- a/mail_template_multi_report/i18n/el_GR.po +++ b/mail_template_multi_report/i18n/el_GR.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Kostas Goutoudis , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,condition:0 msgid "Condition" -msgstr "" +msgstr "Συνθήκη " #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 diff --git a/mail_template_multi_report/i18n/en_GB.po b/mail_template_multi_report/i18n/en_GB.po new file mode 100644 index 00000000..e427f03a --- /dev/null +++ b/mail_template_multi_report/i18n/en_GB.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_AR.po b/mail_template_multi_report/i18n/es_AR.po new file mode 100644 index 00000000..d4db73e3 --- /dev/null +++ b/mail_template_multi_report/i18n/es_AR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_CL.po b/mail_template_multi_report/i18n/es_CL.po new file mode 100644 index 00000000..5042f57e --- /dev/null +++ b/mail_template_multi_report/i18n/es_CL.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_CO.po b/mail_template_multi_report/i18n/es_CO.po index e6d0de9d..e19e1a74 100644 --- a/mail_template_multi_report/i18n/es_CO.po +++ b/mail_template_multi_report/i18n/es_CO.po @@ -3,14 +3,14 @@ # * mail_template_multi_report # # Translators: -# John Toro , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: John Toro , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,17 +33,17 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Creado" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre Público" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -63,22 +63,22 @@ msgstr "Plantilla de E-mails" #. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificación el" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Actualizado por" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Actualizado" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/es_CR.po b/mail_template_multi_report/i18n/es_CR.po new file mode 100644 index 00000000..60278eac --- /dev/null +++ b/mail_template_multi_report/i18n/es_CR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_DO.po b/mail_template_multi_report/i18n/es_DO.po new file mode 100644 index 00000000..da3ff838 --- /dev/null +++ b/mail_template_multi_report/i18n/es_DO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_EC.po b/mail_template_multi_report/i18n/es_EC.po new file mode 100644 index 00000000..f3cc7e18 --- /dev/null +++ b/mail_template_multi_report/i18n/es_EC.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_MX.po b/mail_template_multi_report/i18n/es_MX.po new file mode 100644 index 00000000..db21bde9 --- /dev/null +++ b/mail_template_multi_report/i18n/es_MX.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_PE.po b/mail_template_multi_report/i18n/es_PE.po new file mode 100644 index 00000000..06dd9a62 --- /dev/null +++ b/mail_template_multi_report/i18n/es_PE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_PY.po b/mail_template_multi_report/i18n/es_PY.po new file mode 100644 index 00000000..3adf8614 --- /dev/null +++ b/mail_template_multi_report/i18n/es_PY.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/es_VE.po b/mail_template_multi_report/i18n/es_VE.po new file mode 100644 index 00000000..32be93f0 --- /dev/null +++ b/mail_template_multi_report/i18n/es_VE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/et.po b/mail_template_multi_report/i18n/et.po new file mode 100644 index 00000000..76720cba --- /dev/null +++ b/mail_template_multi_report/i18n/et.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/fa.po b/mail_template_multi_report/i18n/fa.po new file mode 100644 index 00000000..0f7d88bd --- /dev/null +++ b/mail_template_multi_report/i18n/fa.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/fr_CH.po b/mail_template_multi_report/i18n/fr_CH.po new file mode 100644 index 00000000..b46262e4 --- /dev/null +++ b/mail_template_multi_report/i18n/fr_CH.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/gl.po b/mail_template_multi_report/i18n/gl.po index 7bfa8488..ba4fef5b 100644 --- a/mail_template_multi_report/i18n/gl.po +++ b/mail_template_multi_report/i18n/gl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/gl_ES.po b/mail_template_multi_report/i18n/gl_ES.po new file mode 100644 index 00000000..7046c64c --- /dev/null +++ b/mail_template_multi_report/i18n/gl_ES.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/he.po b/mail_template_multi_report/i18n/he.po new file mode 100644 index 00000000..ffdc75de --- /dev/null +++ b/mail_template_multi_report/i18n/he.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/hr.po b/mail_template_multi_report/i18n/hr.po new file mode 100644 index 00000000..a140ad1e --- /dev/null +++ b/mail_template_multi_report/i18n/hr.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/hr_HR.po b/mail_template_multi_report/i18n/hr_HR.po new file mode 100644 index 00000000..cea3ed0e --- /dev/null +++ b/mail_template_multi_report/i18n/hr_HR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/hu.po b/mail_template_multi_report/i18n/hu.po new file mode 100644 index 00000000..da879759 --- /dev/null +++ b/mail_template_multi_report/i18n/hu.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/id.po b/mail_template_multi_report/i18n/id.po new file mode 100644 index 00000000..9a1606b4 --- /dev/null +++ b/mail_template_multi_report/i18n/id.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/ja.po b/mail_template_multi_report/i18n/ja.po new file mode 100644 index 00000000..ceec951f --- /dev/null +++ b/mail_template_multi_report/i18n/ja.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/ko.po b/mail_template_multi_report/i18n/ko.po new file mode 100644 index 00000000..61af854b --- /dev/null +++ b/mail_template_multi_report/i18n/ko.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/lt.po b/mail_template_multi_report/i18n/lt.po new file mode 100644 index 00000000..2ef2c3ea --- /dev/null +++ b/mail_template_multi_report/i18n/lt.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/lv.po b/mail_template_multi_report/i18n/lv.po new file mode 100644 index 00000000..3e1f8c8c --- /dev/null +++ b/mail_template_multi_report/i18n/lv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/mk.po b/mail_template_multi_report/i18n/mk.po new file mode 100644 index 00000000..9e136cee --- /dev/null +++ b/mail_template_multi_report/i18n/mk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/mn.po b/mail_template_multi_report/i18n/mn.po new file mode 100644 index 00000000..fc68bcc5 --- /dev/null +++ b/mail_template_multi_report/i18n/mn.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/nb.po b/mail_template_multi_report/i18n/nb.po new file mode 100644 index 00000000..97bc6259 --- /dev/null +++ b/mail_template_multi_report/i18n/nb.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/nl.po b/mail_template_multi_report/i18n/nl.po index be635151..dc4edc0d 100644 --- a/mail_template_multi_report/i18n/nl.po +++ b/mail_template_multi_report/i18n/nl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" "MIME-Version: 1.0\n" @@ -33,12 +33,12 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Aangemaakt door" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Aangemaakt op" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 @@ -63,7 +63,7 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 @@ -73,12 +73,12 @@ msgstr "Laatst bijgewerkt op" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/nl_BE.po b/mail_template_multi_report/i18n/nl_BE.po new file mode 100644 index 00000000..b9c27dd7 --- /dev/null +++ b/mail_template_multi_report/i18n/nl_BE.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/pl.po b/mail_template_multi_report/i18n/pl.po new file mode 100644 index 00000000..f159281d --- /dev/null +++ b/mail_template_multi_report/i18n/pl.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/pt.po b/mail_template_multi_report/i18n/pt.po index 92b37aa7..e3869cc8 100644 --- a/mail_template_multi_report/i18n/pt.po +++ b/mail_template_multi_report/i18n/pt.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Tiago Baptista , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: Tiago Baptista , 2016\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Criado em" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Modificado a última vez por" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/pt_BR.po b/mail_template_multi_report/i18n/pt_BR.po index 583ae37a..505c0fef 100644 --- a/mail_template_multi_report/i18n/pt_BR.po +++ b/mail_template_multi_report/i18n/pt_BR.po @@ -3,14 +3,14 @@ # * mail_template_multi_report # # Translators: -# Armando Vulcano Junior , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 01:07+0000\n" -"PO-Revision-Date: 2016-06-30 01:07+0000\n" -"Last-Translator: Armando Vulcano Junior , 2016\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,17 +33,17 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Criado por" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Criado em" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Mostrar Nome" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -63,22 +63,22 @@ msgstr "Modelos de Email" #. module: mail_template_multi_report #: field:email.template.report.line,id:0 msgid "ID" -msgstr "" +msgstr "Identificação" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação em" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Última Atualização por" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Última Atualização em" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/pt_PT.po b/mail_template_multi_report/i18n/pt_PT.po index 2342b670..4f72a490 100644 --- a/mail_template_multi_report/i18n/pt_PT.po +++ b/mail_template_multi_report/i18n/pt_PT.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Criado em" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nome a Apresentar" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +68,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última Modificação Em" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/sk.po b/mail_template_multi_report/i18n/sk.po new file mode 100644 index 00000000..72c4f753 --- /dev/null +++ b/mail_template_multi_report/i18n/sk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/sr.po b/mail_template_multi_report/i18n/sr.po new file mode 100644 index 00000000..1a8fc6ab --- /dev/null +++ b/mail_template_multi_report/i18n/sr.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/sr@latin.po b/mail_template_multi_report/i18n/sr@latin.po new file mode 100644 index 00000000..8503b51f --- /dev/null +++ b/mail_template_multi_report/i18n/sr@latin.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/sv.po b/mail_template_multi_report/i18n/sv.po new file mode 100644 index 00000000..91769af2 --- /dev/null +++ b/mail_template_multi_report/i18n/sv.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/th.po b/mail_template_multi_report/i18n/th.po new file mode 100644 index 00000000..cf7c0d14 --- /dev/null +++ b/mail_template_multi_report/i18n/th.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/uk.po b/mail_template_multi_report/i18n/uk.po new file mode 100644 index 00000000..222a8a82 --- /dev/null +++ b/mail_template_multi_report/i18n/uk.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/vi.po b/mail_template_multi_report/i18n/vi.po new file mode 100644 index 00000000..b4f29e2b --- /dev/null +++ b/mail_template_multi_report/i18n/vi.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/zh_CN.po b/mail_template_multi_report/i18n/zh_CN.po new file mode 100644 index 00000000..216b132f --- /dev/null +++ b/mail_template_multi_report/i18n/zh_CN.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/zh_TW.po b/mail_template_multi_report/i18n/zh_TW.po new file mode 100644 index 00000000..f5863da6 --- /dev/null +++ b/mail_template_multi_report/i18n/zh_TW.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-25 18:06+0000\n" +"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "編號" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" From 89619088be05a44a640bf1e788c33319d210e95f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 3 Dec 2016 00:22:15 -0500 Subject: [PATCH 12/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/fr_CH.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mail_template_multi_report/i18n/fr_CH.po b/mail_template_multi_report/i18n/fr_CH.po index b46262e4..53fbcbfb 100644 --- a/mail_template_multi_report/i18n/fr_CH.po +++ b/mail_template_multi_report/i18n/fr_CH.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# leemannd , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-25 18:06+0000\n" -"PO-Revision-Date: 2016-11-25 18:06+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-11-29 17:50+0000\n" +"PO-Revision-Date: 2016-11-29 17:50+0000\n" +"Last-Translator: leemannd , 2016\n" "Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Créé le" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nom affiché" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Dernière modification le" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 From 7ba4ec74fcd4fbe8412521444052c05231a72ce2 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 31 Dec 2016 03:46:14 -0500 Subject: [PATCH 13/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/es_CR.po | 10 +-- mail_template_multi_report/i18n/lt_LT.po | 103 +++++++++++++++++++++++ mail_template_multi_report/i18n/nb_NO.po | 103 +++++++++++++++++++++++ mail_template_multi_report/i18n/ro.po | 103 +++++++++++++++++++++++ mail_template_multi_report/i18n/ru.po | 103 +++++++++++++++++++++++ mail_template_multi_report/i18n/tr.po | 11 +-- mail_template_multi_report/i18n/vi_VN.po | 103 +++++++++++++++++++++++ 7 files changed, 526 insertions(+), 10 deletions(-) create mode 100644 mail_template_multi_report/i18n/lt_LT.po create mode 100644 mail_template_multi_report/i18n/nb_NO.po create mode 100644 mail_template_multi_report/i18n/ro.po create mode 100644 mail_template_multi_report/i18n/ru.po create mode 100644 mail_template_multi_report/i18n/vi_VN.po diff --git a/mail_template_multi_report/i18n/es_CR.po b/mail_template_multi_report/i18n/es_CR.po index 60278eac..be5f0a99 100644 --- a/mail_template_multi_report/i18n/es_CR.po +++ b/mail_template_multi_report/i18n/es_CR.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-25 18:06+0000\n" -"PO-Revision-Date: 2016-11-25 18:06+0000\n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Creado por" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 @@ -73,12 +73,12 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Ultima actualización por" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Ultima actualización en" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 diff --git a/mail_template_multi_report/i18n/lt_LT.po b/mail_template_multi_report/i18n/lt_LT.po new file mode 100644 index 00000000..cd64b060 --- /dev/null +++ b/mail_template_multi_report/i18n/lt_LT.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/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" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/nb_NO.po b/mail_template_multi_report/i18n/nb_NO.po new file mode 100644 index 00000000..109c4085 --- /dev/null +++ b/mail_template_multi_report/i18n/nb_NO.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/ro.po b/mail_template_multi_report/i18n/ro.po new file mode 100644 index 00000000..d6a3d96a --- /dev/null +++ b/mail_template_multi_report/i18n/ro.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/ru.po b/mail_template_multi_report/i18n/ru.po new file mode 100644 index 00000000..0bdd795f --- /dev/null +++ b/mail_template_multi_report/i18n/ru.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: mail_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/tr.po b/mail_template_multi_report/i18n/tr.po index 483fc005..4643315b 100644 --- a/mail_template_multi_report/i18n/tr.po +++ b/mail_template_multi_report/i18n/tr.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Ahmet Altinisik , 2016 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Oluşturuldu" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Görünen İsim" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Son değişiklik" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 diff --git a/mail_template_multi_report/i18n/vi_VN.po b/mail_template_multi_report/i18n/vi_VN.po new file mode 100644 index 00000000..ae26cf38 --- /dev/null +++ b/mail_template_multi_report/i18n/vi_VN.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 06:25+0000\n" +"PO-Revision-Date: 2016-12-24 06:25+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" From 3acc1caa4e4f0a2717c8e9b7b696fb4fab51bbfd Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 7 Jan 2017 02:28:15 -0500 Subject: [PATCH 14/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/fr_CA.po | 103 +++++++++++++++++++++++ mail_template_multi_report/i18n/tr_TR.po | 103 +++++++++++++++++++++++ 2 files changed, 206 insertions(+) create mode 100644 mail_template_multi_report/i18n/fr_CA.po create mode 100644 mail_template_multi_report/i18n/tr_TR.po diff --git a/mail_template_multi_report/i18n/fr_CA.po b/mail_template_multi_report/i18n/fr_CA.po new file mode 100644 index 00000000..791d6513 --- /dev/null +++ b/mail_template_multi_report/i18n/fr_CA.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 08:49+0000\n" +"PO-Revision-Date: 2016-12-31 08:49+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" diff --git a/mail_template_multi_report/i18n/tr_TR.po b/mail_template_multi_report/i18n/tr_TR.po new file mode 100644 index 00000000..d19aa6bf --- /dev/null +++ b/mail_template_multi_report/i18n/tr_TR.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 08:49+0000\n" +"PO-Revision-Date: 2016-12-31 08:49+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" From ca0ebf50ec159066e1e22ce85b73f9e4a33a0c9f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 14 Jan 2017 03:24:12 -0500 Subject: [PATCH 15/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/ca.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mail_template_multi_report/i18n/ca.po b/mail_template_multi_report/i18n/ca.po index 41803202..470fa6b1 100644 --- a/mail_template_multi_report/i18n/ca.po +++ b/mail_template_multi_report/i18n/ca.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Carles Antoli , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-25 18:06+0000\n" -"PO-Revision-Date: 2016-11-25 18:06+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-01-07 07:31+0000\n" +"PO-Revision-Date: 2017-01-07 07:31+0000\n" +"Last-Translator: Carles Antoli , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Creat el" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Veure el nom" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Darrera modificació el" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 From 73be4a4bad48364f0a756b5f9c8574e1e61a5c1e Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 18 Feb 2017 02:42:15 -0500 Subject: [PATCH 16/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/es_ES.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mail_template_multi_report/i18n/es_ES.po b/mail_template_multi_report/i18n/es_ES.po index 3de66a27..d892419d 100644 --- a/mail_template_multi_report/i18n/es_ES.po +++ b/mail_template_multi_report/i18n/es_ES.po @@ -4,13 +4,14 @@ # # Translators: # OCA Transbot , 2016 +# Fernando Lara , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2017-02-10 11:32+0000\n" +"PO-Revision-Date: 2017-02-10 11:32+0000\n" +"Last-Translator: Fernando Lara , 2017\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgstr "Creado en" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 msgid "Display Name" -msgstr "" +msgstr "Nombre para mostrar" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 @@ -68,7 +69,7 @@ msgstr "ID" #. module: mail_template_multi_report #: field:email.template.report.line,__last_update:0 msgid "Last Modified on" -msgstr "" +msgstr "Última modificación en" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 From 8a48aa323682ac054af1f1f9e5bbc41e1fe8f1bc Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Tue, 2 May 2017 02:12:41 +0200 Subject: [PATCH 17/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/de.po | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/mail_template_multi_report/i18n/de.po b/mail_template_multi_report/i18n/de.po index 3b8fd9ba..dc6b7e5b 100644 --- a/mail_template_multi_report/i18n/de.po +++ b/mail_template_multi_report/i18n/de.po @@ -4,14 +4,14 @@ # # Translators: # OCA Transbot , 2016 -# Ermin Trevisan , 2016 +# Rudolf Schnapka , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-14 07:21+0000\n" -"PO-Revision-Date: 2016-09-14 07:21+0000\n" -"Last-Translator: Ermin Trevisan , 2016\n" +"POT-Creation-Date: 2017-04-30 10:21+0000\n" +"PO-Revision-Date: 2017-04-30 10:21+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +25,13 @@ msgid "" "An expression evaluated to determine if the report is to be attached to the " "email. If blank, the report will always be attached." msgstr "" +"Ein Ausdruck, dessen Auswertung bestimmt, ob der Bericht an die Mail " +"angehängt wird. Wenn leer, wird der Bericht immer angehängt." #. module: mail_template_multi_report #: field:email.template.report.line,condition:0 msgid "Condition" -msgstr "" +msgstr "Bedingung" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 @@ -49,12 +51,12 @@ msgstr "Anzeigename" #. module: mail_template_multi_report #: field:email.template.report.line,template_id:0 msgid "Email Template" -msgstr "" +msgstr "Emailvorlage" #. module: mail_template_multi_report #: model:ir.model,name:mail_template_multi_report.model_email_template_report_line msgid "Email Template Report Line" -msgstr "" +msgstr "Emailvorlagen-Berichtsposition" #. module: mail_template_multi_report #: model:ir.model,name:mail_template_multi_report.model_email_template @@ -87,18 +89,20 @@ msgid "" "Name to use for the generated report file (may contain placeholders)\n" "The extension can be omitted and will then come from the report type." msgstr "" +"Für erzeugte Berichtsdateien zu verwendender Dateinam (mit Platzhaltern)\n" +"Die Erweiterung kann wegelassen werden und wird dann aus der Berichtsart ermittelt." #. module: mail_template_multi_report #: field:email.template.report.line,report_template_id:0 msgid "Optional report to print and attach" -msgstr "" +msgstr "Optionaler Bericht zum drucken und anhängen" #. module: mail_template_multi_report #: field:email.template,report_line_ids:0 msgid "Other Reports" -msgstr "" +msgstr "Andere Berichte" #. module: mail_template_multi_report #: field:email.template.report.line,report_name:0 msgid "Report Filename" -msgstr "" +msgstr "Berichtsdateiname" From 2e6692ab5d7c81a7c8545447f15221079c5f022f Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 1 Jul 2017 11:36:53 +0200 Subject: [PATCH 18/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/nl_NL.po | 103 +++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 mail_template_multi_report/i18n/nl_NL.po diff --git a/mail_template_multi_report/i18n/nl_NL.po b/mail_template_multi_report/i18n/nl_NL.po new file mode 100644 index 00000000..b801e73d --- /dev/null +++ b/mail_template_multi_report/i18n/nl_NL.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-20 08:42+0000\n" +"PO-Revision-Date: 2017-05-20 08:42+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/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_template_multi_report +#: help:email.template.report.line,condition:0 +msgid "" +"An expression evaluated to determine if the report is to be attached to the " +"email. If blank, the report will always be attached." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,condition:0 +msgid "Condition" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template_report_line +msgid "Email Template Report Line" +msgstr "" + +#. module: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,id:0 +msgid "ID" +msgstr "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: mail_template_multi_report +#: help:email.template.report.line,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_template_id:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "" From b93a4fce5b1ad3ff81f58a51b7405c1edf878d1d Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Sep 2017 11:33:37 +0200 Subject: [PATCH 19/20] OCA Transbot updated translations from Transifex --- mail_template_multi_report/i18n/nl_NL.po | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mail_template_multi_report/i18n/nl_NL.po b/mail_template_multi_report/i18n/nl_NL.po index b801e73d..4c4b4a9a 100644 --- a/mail_template_multi_report/i18n/nl_NL.po +++ b/mail_template_multi_report/i18n/nl_NL.po @@ -3,13 +3,14 @@ # * mail_template_multi_report # # Translators: +# OCA Transbot , 2017 # Peter Hageman , 2017 msgid "" msgstr "" "Project-Id-Version: Odoo Server 8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-20 08:42+0000\n" -"PO-Revision-Date: 2017-05-20 08:42+0000\n" +"POT-Creation-Date: 2017-08-19 10:10+0000\n" +"PO-Revision-Date: 2017-08-19 10:10+0000\n" "Last-Translator: Peter Hageman , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -33,12 +34,12 @@ msgstr "" #. module: mail_template_multi_report #: field:email.template.report.line,create_uid:0 msgid "Created by" -msgstr "" +msgstr "Aangemaakt door" #. module: mail_template_multi_report #: field:email.template.report.line,create_date:0 msgid "Created on" -msgstr "" +msgstr "Aangemaakt op" #. module: mail_template_multi_report #: field:email.template.report.line,display_name:0 @@ -73,12 +74,12 @@ msgstr "Laatst gewijzigd op" #. module: mail_template_multi_report #: field:email.template.report.line,write_uid:0 msgid "Last Updated by" -msgstr "" +msgstr "Laatst bijgewerkt door" #. module: mail_template_multi_report #: field:email.template.report.line,write_date:0 msgid "Last Updated on" -msgstr "" +msgstr "Laatst bijgewerkt op" #. module: mail_template_multi_report #: help:email.template.report.line,report_name:0 From e51c4e90444eed7cdd701fc8a3c94affc2f2150c Mon Sep 17 00:00:00 2001 From: Ronny Houben Date: Thu, 14 Dec 2017 15:41:31 +0100 Subject: [PATCH 20/20] Migration to 10.0 --- .../{__openerp__.py => __manifest__.py} | 6 +- .../models/email_template.py | 62 ++++++++++++------- .../models/email_template_report_line.py | 18 +++--- .../security/ir.model.access.csv | 4 +- .../tests/test_email_template.py | 17 ++--- .../views/email_template.xml | 34 +++++----- 6 files changed, 76 insertions(+), 65 deletions(-) rename mail_template_multi_report/{__openerp__.py => __manifest__.py} (80%) diff --git a/mail_template_multi_report/__openerp__.py b/mail_template_multi_report/__manifest__.py similarity index 80% rename from mail_template_multi_report/__openerp__.py rename to mail_template_multi_report/__manifest__.py index ff0f67aa..255abef1 100644 --- a/mail_template_multi_report/__openerp__.py +++ b/mail_template_multi_report/__manifest__.py @@ -4,14 +4,14 @@ { 'name': 'Email Template Multi Report', - 'version': '8.0.1.0.0', + 'version': '10.0.1.0.0', 'category': 'Marketing', 'summary': 'Multiple Reports in Email Templates', - 'author': 'Savoir-faire Linux,Odoo Community Association (OCA)', + 'author': 'Savoir-faire Linux,Apertoso NV,Odoo Community Association (OCA)', 'website': 'http://www.savoirfairelinux.com', 'license': 'AGPL-3', 'depends': [ - 'email_template', + 'mail', ], 'data': [ 'security/ir.model.access.csv', diff --git a/mail_template_multi_report/models/email_template.py b/mail_template_multi_report/models/email_template.py index ba1712af..53d25896 100644 --- a/mail_template_multi_report/models/email_template.py +++ b/mail_template_multi_report/models/email_template.py @@ -4,54 +4,70 @@ import base64 -from openerp import api, fields, models -from openerp.tools.safe_eval import safe_eval +from odoo import api, fields, models +from odoo import report as odoo_report +from odoo.tools.safe_eval import safe_eval -class EmailTemplate(models.Model): - - _inherit = 'email.template' +class MailTemplate(models.Model): + _inherit = 'mail.template' report_line_ids = fields.One2many( - 'email.template.report.line', 'template_id', string='Other Reports') + 'mail.template.report.line', 'template_id', string='Other Reports') @api.model - def generate_email_batch(self, template_id, res_ids, fields=None): - results = super(EmailTemplate, self).generate_email_batch( - template_id, res_ids, fields=fields) + def generate_email(self, res_ids, fields=None): + results = super(MailTemplate, self).generate_email( + res_ids, fields=fields + ) - template = self.browse(template_id) - report_ext = '.pdf' + multi_mode = True + if isinstance(res_ids, (int, long)): + res_ids = [res_ids] + multi_mode = False - for report_line in template.report_line_ids: - records = self.env[template.model_id.model].browse(res_ids) + for report_line in self.report_line_ids: + records = self.env[self.model_id.model].browse(res_ids) for rec in records: condition = report_line.condition if condition and condition.strip(): condition_result = self.render_template( - condition, template.model, rec.id) + condition, self.model, rec.id) if not condition_result or not safe_eval(condition_result): continue - report_name = self.render_template( - report_line.report_name, template.model, rec.id) - + report_name = self.render_template(report_line.report_name, + self.model, rec.id) report = report_line.report_template_id report_service = report.report_name - result = self.env['report'].get_pdf(rec, report_service) + if report.report_type in ['qweb-html', 'qweb-pdf']: + result, format = self.env['report'].get_pdf( + rec.ids, + report_service), 'pdf' + + else: + result, format = odoo_report.render_report( + self._cr, + self._uid, + rec.ids, + report_service, + { + 'model': self.model}, + self._context) + + # TODO in trunk, change return format to binary to match message_post expected format result = base64.b64encode(result) - if not report_name: report_name = 'report.' + report_service - - if not report_name.endswith(report_ext): - report_name += report_ext + ext = "." + format + if not report_name.endswith(ext): + report_name += ext results[rec.id].setdefault('attachments', []) results[rec.id]['attachments'].append((report_name, result)) - return results + return multi_mode and results or result[res_ids[0]] diff --git a/mail_template_multi_report/models/email_template_report_line.py b/mail_template_multi_report/models/email_template_report_line.py index 669f5997..52a5c222 100644 --- a/mail_template_multi_report/models/email_template_report_line.py +++ b/mail_template_multi_report/models/email_template_report_line.py @@ -2,35 +2,37 @@ # © 2016 Savoir-faire Linux # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import fields, models +from odoo import fields, models -class EmailTemplateReportLine(models.Model): +class MailTemplateReportLine(models.Model): """Email Template Report Line""" - _name = 'email.template.report.line' + _name = 'mail.template.report.line' _description = __doc__ template_id = fields.Many2one( - 'email.template', string='Email Template' + comodel_name='mail.template', + string='Email Template' ) report_name = fields.Char( - 'Report Filename', translate=True, + string='Report Filename', + translate=True, help="Name to use for the generated report " "file (may contain placeholders)\n" "The extension can be omitted and will then come from the report type." ) condition = fields.Char( - 'Condition', + string='Condition', help="An expression evaluated to determine if the report is " "to be attached to the email. If blank, the report will always be " "attached." ) report_template_id = fields.Many2one( - 'ir.actions.report.xml', - 'Optional report to print and attach', + comodel_name='ir.actions.report.xml', + string='Optional report to print and attach', domain=[('report_type', 'in', ['qweb-html', 'qweb-pdf'])], ) diff --git a/mail_template_multi_report/security/ir.model.access.csv b/mail_template_multi_report/security/ir.model.access.csv index a198aafd..dda50423 100644 --- a/mail_template_multi_report/security/ir.model.access.csv +++ b/mail_template_multi_report/security/ir.model.access.csv @@ -1,3 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_email_template_report_line,email.template,model_email_template_report_line,base.group_user,1,1,1,0 -access_email_template_report_line_system,email.template system,model_email_template_report_line,base.group_system,1,1,1,1 +access_email_template_report_line,mail.template,model_mail_template_report_line,base.group_user,1,1,1,0 +access_email_template_report_line_system,mail.template system,model_mail_template_report_line,base.group_system,1,1,1,1 diff --git a/mail_template_multi_report/tests/test_email_template.py b/mail_template_multi_report/tests/test_email_template.py index e2c1daab..41df986a 100644 --- a/mail_template_multi_report/tests/test_email_template.py +++ b/mail_template_multi_report/tests/test_email_template.py @@ -2,7 +2,7 @@ # © 2016 Savoir-faire Linux # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.tests import common +from odoo.tests import common class TestEmailTemplate(common.TransactionCase): @@ -43,7 +43,7 @@ class TestEmailTemplate(common.TransactionCase): 'report_name': 'mail_template_multi_report.test_report_template', }) - self.template = self.env['email.template'].create({ + self.template = self.env['mail.template'].create({ 'name': 'Test Email Template', 'model_id': self.env.ref('base.model_res_partner').id, 'report_line_ids': [(0, 0, { @@ -58,9 +58,7 @@ class TestEmailTemplate(common.TransactionCase): }) def test_01_generate_email_batch(self): - res = self.env['email.template'].generate_email_batch( - self.template.id, [self.partner.id]) - + res = self.template.generate_email([self.partner.id]) self.assertEquals(len(res[self.partner.id]['attachments']), 1) def test_02_generate_email_batch_with_standard_report(self): @@ -69,8 +67,7 @@ class TestEmailTemplate(common.TransactionCase): 'report_template': self.report.id, }) - res = self.env['email.template'].generate_email_batch( - self.template.id, [self.partner.id]) + res = self.template.generate_email([self.partner.id]) self.assertEquals(len(res[self.partner.id]['attachments']), 2) @@ -79,8 +76,7 @@ class TestEmailTemplate(common.TransactionCase): 'condition': "${object.customer}", }) - res = self.env['email.template'].generate_email_batch( - self.template.id, [self.partner.id]) + res = self.template.generate_email([self.partner.id]) self.assertEquals(len(res[self.partner.id]['attachments']), 1) @@ -89,8 +85,7 @@ class TestEmailTemplate(common.TransactionCase): 'condition': "${object.supplier}", }) - res = self.env['email.template'].generate_email_batch( - self.template.id, [self.partner.id]) + res = self.template.generate_email([self.partner.id]) res[self.partner.id].setdefault('attachments', []) self.assertEquals(len(res[self.partner.id]['attachments']), 0) diff --git a/mail_template_multi_report/views/email_template.xml b/mail_template_multi_report/views/email_template.xml index 939cc044..283fad0d 100644 --- a/mail_template_multi_report/views/email_template.xml +++ b/mail_template_multi_report/views/email_template.xml @@ -1,21 +1,19 @@ - - - - email.template.form - email.template - - - - - - - - - - + + + mail.template.form + mail.template + + + + + + + + + - - - + + +