diff --git a/mail_template_multi_report/README.rst b/mail_template_multi_report/README.rst new file mode 100644 index 00000000..c6235e54 --- /dev/null +++ b/mail_template_multi_report/README.rst @@ -0,0 +1,76 @@ +.. 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 + +============================ +Mail 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. + +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/social/8.0 + +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 +=========== + +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/__manifest__.py b/mail_template_multi_report/__manifest__.py new file mode 100644 index 00000000..255abef1 --- /dev/null +++ b/mail_template_multi_report/__manifest__.py @@ -0,0 +1,23 @@ +# -*- 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': '10.0.1.0.0', + 'category': 'Marketing', + 'summary': 'Multiple Reports in Email Templates', + 'author': 'Savoir-faire Linux,Apertoso NV,Odoo Community Association (OCA)', + 'website': 'http://www.savoirfairelinux.com', + 'license': 'AGPL-3', + 'depends': [ + 'mail', + ], + 'data': [ + 'security/ir.model.access.csv', + 'views/email_template.xml', + ], + 'installable': True, + 'application': False, + 'auto_install': False, +} 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/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 new file mode 100644 index 00000000..470fa6b1 --- /dev/null +++ b/mail_template_multi_report/i18n/ca.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 , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \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" +"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 "Creat per" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Veure el 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 "Plantilles de correu electrònic" + +#. 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 "Darrera modificació el" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització 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/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 new file mode 100644 index 00000000..0134deaf --- /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: +# 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: 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 "Oprettet af" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Vist 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 "Email skabeloner" + +#. 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 "Sidst ændret den" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret 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/de.po b/mail_template_multi_report/i18n/de.po new file mode 100644 index 00000000..dc6b7e5b --- /dev/null +++ b/mail_template_multi_report/i18n/de.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mail_template_multi_report +# +# Translators: +# OCA Transbot , 2016 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \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" +"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 "" +"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 "Bedingung" + +#. 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 "Anzeigename" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +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 "Emailvorlagen-Berichtsposition" + +#. 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 "Zuletzt geändert am" + +#. 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 "" +"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 "Optionaler Bericht zum drucken und anhängen" + +#. module: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "Andere Berichte" + +#. module: mail_template_multi_report +#: field:email.template.report.line,report_name:0 +msgid "Report Filename" +msgstr "Berichtsdateiname" 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..c4380582 --- /dev/null +++ b/mail_template_multi_report/i18n/el_GR.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 +# Kostas Goutoudis , 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: 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" +"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/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.po b/mail_template_multi_report/i18n/es.po new file mode 100644 index 00000000..24441a6a --- /dev/null +++ b/mail_template_multi_report/i18n/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 (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 "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 "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 "Ú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 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_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 new file mode 100644 index 00000000..e19e1a74 --- /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: +# 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 (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 "Creado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: mail_template_multi_report +#: field:email.template.report.line,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. 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 "ID" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. 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_CR.po b/mail_template_multi_report/i18n/es_CR.po new file mode 100644 index 00000000..be5f0a99 --- /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-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" +"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 "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_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_ES.po b/mail_template_multi_report/i18n/es_ES.po new file mode 100644 index 00000000..d892419d --- /dev/null +++ b/mail_template_multi_report/i18n/es_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 +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \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" +"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 "Nombre para 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 "Ú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 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/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/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 new file mode 100644 index 00000000..b92b288f --- /dev/null +++ b/mail_template_multi_report/i18n/fr.po @@ -0,0 +1,107 @@ +# 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: 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: \n" +"Language: fr\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 "" +"Une expression évaluée pour déterminer si le rapport doit être attaché au " +"courriel. Si vide, le rapport sera toujours attaché." + +#. 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 "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 "Nom à afficher" + +#. module: mail_template_multi_report +#: field:email.template.report.line,template_id:0 +msgid "Email Template" +msgstr "Modèle de courriel" + +#. 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: mail_template_multi_report +#: model:ir.model,name:mail_template_multi_report.model_email_template +msgid "Email Templates" +msgstr "Modèles de courriel" + +#. 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 "Dernière modification le" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Mis-à-jour par" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Mis-à-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 "" +"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: 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: mail_template_multi_report +#: field:email.template,report_line_ids:0 +msgid "Other Reports" +msgstr "Autres rapports" + +#. 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/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/fr_CH.po b/mail_template_multi_report/i18n/fr_CH.po new file mode 100644 index 00000000..53fbcbfb --- /dev/null +++ b/mail_template_multi_report/i18n/fr_CH.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 +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \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" +"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 "Nom affiché" + +#. 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 "Dernière modification le" + +#. 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 new file mode 100644 index 00000000..ba4fef5b --- /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-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" +"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 "Última modificación" + +#. 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/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/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/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/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/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/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/nl.po b/mail_template_multi_report/i18n/nl.po new file mode 100644 index 00000000..dc4edc0d --- /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-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" +"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 "Aangemaakt door" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. 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 "ID" + +#. 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 "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/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/nl_NL.po b/mail_template_multi_report/i18n/nl_NL.po new file mode 100644 index 00000000..4c4b4a9a --- /dev/null +++ b/mail_template_multi_report/i18n/nl_NL.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 , 2017 +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \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" +"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 "Aangemaakt door" + +#. module: mail_template_multi_report +#: field:email.template.report.line,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. 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 "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 new file mode 100644 index 00000000..e3869cc8 --- /dev/null +++ b/mail_template_multi_report/i18n/pt.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 +# Tiago Baptista , 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: 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" +"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 "Nome" + +#. 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 "Modificado a última vez por" + +#. 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_BR.po b/mail_template_multi_report/i18n/pt_BR.po new file mode 100644 index 00000000..505c0fef --- /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: +# 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: 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 "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 "Mostrar Nome" + +#. 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 "Identificação" + +#. module: mail_template_multi_report +#: field:email.template.report.line,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_uid:0 +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: mail_template_multi_report +#: field:email.template.report.line,write_date:0 +msgid "Last Updated on" +msgstr "Última Atualização 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..4f72a490 --- /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-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" +"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 "Nome a Apresentar" + +#. 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 Modificação Em" + +#. 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/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/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/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" 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/tr.po b/mail_template_multi_report/i18n/tr.po new file mode 100644 index 00000000..4643315b --- /dev/null +++ b/mail_template_multi_report/i18n/tr.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 +# Ahmet Altinisik , 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: 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" +"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 "Görünen İsim" + +#. 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 "Son değişiklik" + +#. 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 "" 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 "" 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/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 "" 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 "" 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..53d25896 --- /dev/null +++ b/mail_template_multi_report/models/email_template.py @@ -0,0 +1,73 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +import base64 + +from odoo import api, fields, models +from odoo import report as odoo_report +from odoo.tools.safe_eval import safe_eval + + +class MailTemplate(models.Model): + _inherit = 'mail.template' + + report_line_ids = fields.One2many( + 'mail.template.report.line', 'template_id', string='Other Reports') + + @api.model + def generate_email(self, res_ids, fields=None): + results = super(MailTemplate, self).generate_email( + res_ids, fields=fields + ) + + multi_mode = True + if isinstance(res_ids, (int, long)): + res_ids = [res_ids] + multi_mode = False + + 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, self.model, rec.id) + + if not condition_result or not safe_eval(condition_result): + continue + + report_name = self.render_template(report_line.report_name, + self.model, rec.id) + report = report_line.report_template_id + report_service = report.report_name + + 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 + 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 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 new file mode 100644 index 00000000..52a5c222 --- /dev/null +++ b/mail_template_multi_report/models/email_template_report_line.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class MailTemplateReportLine(models.Model): + """Email Template Report Line""" + + _name = 'mail.template.report.line' + _description = __doc__ + + template_id = fields.Many2one( + comodel_name='mail.template', + string='Email Template' + ) + + report_name = fields.Char( + 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( + 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( + 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 new file mode 100644 index 00000000..dda50423 --- /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,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/__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..41df986a --- /dev/null +++ b/mail_template_multi_report/tests/test_email_template.py @@ -0,0 +1,91 @@ +# -*- coding: utf-8 -*- +# © 2016 Savoir-faire Linux +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.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['mail.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.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): + self.template.write({ + 'report_name': '${object.name}', + 'report_template': self.report.id, + }) + + res = self.template.generate_email([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.template.generate_email([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.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 new file mode 100644 index 00000000..283fad0d --- /dev/null +++ b/mail_template_multi_report/views/email_template.xml @@ -0,0 +1,19 @@ + + + + mail.template.form + mail.template + + + + + + + + + + + + + +