diff --git a/report_qweb_signer/README.rst b/report_qweb_signer/README.rst new file mode 100644 index 00000000..bd69d6b5 --- /dev/null +++ b/report_qweb_signer/README.rst @@ -0,0 +1,117 @@ +.. 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 + +======================= +Qweb PDF reports signer +======================= + +This module extends the functionality of report module to sign +PDFs using a PKCS#12 certificate. + + +Installation +============ + +To install this module, you need to install Java JDK:: + + apt-get install openjdk-7-jre-headless + + +Configuration +============= + +In order to start signing PDF documents you need to configure certificate(s) +to use in your company. + +* Go to ``Settings > Companies > Companies > Your company`` +* Go to ``Report configuration`` tab +* Click ``Edit`` +* Add a new item in ``PDF report certificates`` list +* Click ``Create`` +* Set name, certificate file, password file and model +* Optionally you can set a domain and filename pattern for saving as attachment + +For example, if you want to sign only customer invoices in open or paid state: + +* Model: ``account.invoice`` +* Domain: ``[('type','=','out_invoice'), ('state', 'in', ('open', 'paid'))]`` +* Save as attachment: ``(object.number or '').replace('/','_') + '.signed.pdf'`` + +**Note**: Linux user that executes Odoo server process must have +read access to certificate file and password file + + +Usage +===== + +User just prints PDF documents (only Qweb PDF reports supported) as usual, +but signed PDF is automatically downloaded if this document model is configured +as indicated above. + +If 'Save as attachment' is configured, signed PDF is saved as attachment and +next time saved one is downloaded without signing again. This is appropiate +when signing date is important, for example, when signing customer invoices. + +You can try the signing with the demo report that is included for customers +called "Test PDF certificate". + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/143/10.0 + +Known issues / Roadmap +====================== + +* When signing multiple documents (if 'Allow only one document' is disable) + then 'Save as attachment' is not applied and signed result is not + saved as attachment. +* To have a visible signature through an image embedded in the resulting PDF. +* Add tests. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and +welcomed feedback `here `_. + + +Credits +======= + +External utilities +------------------ + +* iText v1.4.8: © 2000-2006, Paulo Soares, Bruno Lowagie and others - License `MPL `_ or `LGPL2 `_ - http://sourceforge.net/projects/itext +* jPdfSign: © 2006 Jan Peter Stotz - License `MPL `_ or `LGPL2 `_ (inherited from iText) - http://private.sit.fraunhofer.de/~stotz/software/jpdfsign +* Modified jPdfSign: © 2015 Antonio Espinosa - License `MPL `_ or `LGPL2 `_ (inherited from iText) - static/src/java/JPdfSign.java + +Icon +---- + +`Created by Anton Noskov from the Noun Project `_ + +Contributors +------------ + +* Rafael Blasco +* Antonio Espinosa +* Pedro M. Baeza + +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/report_qweb_signer/__init__.py b/report_qweb_signer/__init__.py new file mode 100644 index 00000000..a77a6fcb --- /dev/null +++ b/report_qweb_signer/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/report_qweb_signer/__manifest__.py b/report_qweb_signer/__manifest__.py new file mode 100644 index 00000000..246892ba --- /dev/null +++ b/report_qweb_signer/__manifest__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Tecnativa - Antonio Espinosa +# Copyright 2017 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Qweb PDF reports signer", + "summary": "Sign Qweb PDFs usign a PKCS#12 certificate", + "version": "10.0.1.0.0", + "category": "Reporting", + "website": "https://www.tecnativa.com", + "author": "Tecnativa, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": [ + "report", + ], + "external_dependencies": { + "bin": ['/usr/bin/java'], + }, + "data": [ + "security/ir.model.access.csv", + "views/report_certificate_view.xml", + "views/res_company_view.xml", + ], + "demo": [ + "demo/report_partner_demo.xml", + "demo/report_certificate_demo.xml", + ], +} diff --git a/report_qweb_signer/demo/report_certificate_demo.xml b/report_qweb_signer/demo/report_certificate_demo.xml new file mode 100644 index 00000000..266be891 --- /dev/null +++ b/report_qweb_signer/demo/report_certificate_demo.xml @@ -0,0 +1,20 @@ + + + + + + + Test OCA certificate + test.p12 + test.passwd + + [('customer', '=', True)] + + 'test_' + (object.name or '').replace(' ', '_').lower() + '.signed.pdf' + + + diff --git a/report_qweb_signer/demo/report_partner_demo.xml b/report_qweb_signer/demo/report_partner_demo.xml new file mode 100644 index 00000000..01744c9a --- /dev/null +++ b/report_qweb_signer/demo/report_partner_demo.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + diff --git a/report_qweb_signer/i18n/am.po b/report_qweb_signer/i18n/am.po new file mode 100644 index 00000000..72b19b6b --- /dev/null +++ b/report_qweb_signer/i18n/am.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "ኩባንያዎች" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ar.po b/report_qweb_signer/i18n/ar.po new file mode 100644 index 00000000..3eb0dfef --- /dev/null +++ b/report_qweb_signer/i18n/ar.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "الشركات" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "الشركة" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "أنشئ في" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "اسم العرض" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "المعرف" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "الاسم" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "المسلسل" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/bg.po b/report_qweb_signer/i18n/bg.po new file mode 100644 index 00000000..33a70ba0 --- /dev/null +++ b/report_qweb_signer/i18n/bg.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-11-25 14:57+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Фирма" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Създадено от" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Създадено на" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Име за Показване" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Име" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Последователност" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/bs.po b/report_qweb_signer/i18n/bs.po new file mode 100644 index 00000000..ea72e71e --- /dev/null +++ b/report_qweb_signer/i18n/bs.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 11:09+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Kompanija" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Ime" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekvenca" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ca.po b/report_qweb_signer/i18n/ca.po new file mode 100644 index 00000000..9d993f39 --- /dev/null +++ b/report_qweb_signer/i18n/ca.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creat per" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creat el" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Veure el nom" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nom" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Seqüència" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ca_ES.po b/report_qweb_signer/i18n/ca_ES.po new file mode 100644 index 00000000..a6700c0f --- /dev/null +++ b/report_qweb_signer/i18n/ca_ES.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:41+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Companyia" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/cs.po b/report_qweb_signer/i18n/cs.po new file mode 100644 index 00000000..38d9be97 --- /dev/null +++ b/report_qweb_signer/i18n/cs.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Společnost" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Vytvořeno" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Název" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Číselná řada" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/da.po b/report_qweb_signer/i18n/da.po new file mode 100644 index 00000000..c2180f19 --- /dev/null +++ b/report_qweb_signer/i18n/da.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Danish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Virksomheder" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Virksomhed" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Oprettet af" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Oprettet den" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Vist navn" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "Id" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Navn" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Rækkefølge" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/de.po b/report_qweb_signer/i18n/de.po new file mode 100644 index 00000000..d53cdee1 --- /dev/null +++ b/report_qweb_signer/i18n/de.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 05:55+0000\n" +"PO-Revision-Date: 2017-03-10 13:16+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "Nur einzelne Dokumente erlaubt" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "Dateipfad des Zertifikats" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "Zertifikate" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Unternehmen" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Erstellt von" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Erstellt am:" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Anzeigename" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "Domäne" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "Domäne zur Auswahl, ob das Dokument abgezeichnet wird oder nicht." + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "Dateiname für das gespeicherte, abgezeichnete Dokument. Leer lassen, um das gezeichnete Dokument nicht abzuspeichern." + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "Wenn gesetzt, kann dieses Zertikat nicht zum abzeichnen des PDFs mehrerer Dokumente verwendet werden." + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modell" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "Modell zur Anwendung dieses Zertifikats" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Bezeichnung" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "PDF-Zertifikate" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "PDF-Berichts-Zertifikat" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "PDF-Berichtszertifikate" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "Partner:" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "Passwort-Dateipfad" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "Pfad zur PKCS#12 Zertifikatsdatei" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "Pfad zur Zertifikats-Passwortdatei" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Bericht" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "Speichere den Anhang" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "Speichere abgezeichneten Bericht (PDF): Sie haben unzureichende Berechtigungen, um Anhänge zu speichern" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Reihenfolge" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "Bericht abzeichnen (PDF): Zertifikat oder Passwortdatei nicht gefunden" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "Bericht abzeichnen (PDF): jPdfSign scheiterte (Fehlerkennzeichen: %s). Meldung; %s. Ausgabe: %s" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "Test-PDF-Zertifikat" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "Dies ist ein Beispielbericht zum Testen der PDF-Zertifikate" diff --git a/report_qweb_signer/i18n/el_GR.po b/report_qweb_signer/i18n/el_GR.po new file mode 100644 index 00000000..d2e2a287 --- /dev/null +++ b/report_qweb_signer/i18n/el_GR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Εταιρεία" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "Κωδικός" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Αναφορά" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/en_GB.po b/report_qweb_signer/i18n/en_GB.po new file mode 100644 index 00000000..43600a22 --- /dev/null +++ b/report_qweb_signer/i18n/en_GB.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Company" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Created by" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Display Name" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Name" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sequence" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es.po b/report_qweb_signer/i18n/es.po new file mode 100644 index 00000000..e1cdc7c6 --- /dev/null +++ b/report_qweb_signer/i18n/es.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +# Eduardo Rodríguez Crespo , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-08 09:43+0000\n" +"PO-Revision-Date: 2016-06-13 21:48+0000\n" +"Last-Translator: Eduardo Rodríguez Crespo \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "Sólo un documento" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "Ruta al certificado" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "Certificados" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "Dominio" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "Dominio para filrar si firmar o no el documento" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "Nombre de fichero usado para guardar el documento firmado como adjunto. Dejar en blanco para no guardar el documento firmado." + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "Si Verdadero, este certificado no puede ser usado para firmar un PDF desde varios documentos." + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modelo" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "Modelo en el que usar este certificado para firmar" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "Certificados PDF" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "Certificado de informe PDF" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "Certificados de informes PDF" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "Empresa:" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "Ruta al fichero de contraseña" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "Ruta al fichero de certificado PKCS#12" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "Ruta al fichero que contiene la contraseña con la que se proteje el fichero de certificado" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Informe" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "Salvar como adjunto" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enough access rights to save " +"attachments" +msgstr "Guardar informe firmado (PDF): no tiene suficientes permisos de acceso para guardar adjuntos" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "Firmar informes (PDF): Certificado o archivo contraseña no encontrado" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "Firmar informes (PDF): jPdfSign falló (código de error: %s). Mensaje: %s. Salida: %s" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "Test certificado PDF" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "Esta es una plantilla de informe para probar los certificados PDF" diff --git a/report_qweb_signer/i18n/es_AR.po b/report_qweb_signer/i18n/es_AR.po new file mode 100644 index 00000000..8b7c40b9 --- /dev/null +++ b/report_qweb_signer/i18n/es_AR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_CL.po b/report_qweb_signer/i18n/es_CL.po new file mode 100644 index 00000000..9ac8da30 --- /dev/null +++ b/report_qweb_signer/i18n/es_CL.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_CO.po b/report_qweb_signer/i18n/es_CO.po new file mode 100644 index 00000000..626cd4e9 --- /dev/null +++ b/report_qweb_signer/i18n/es_CO.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre Público" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_CR.po b/report_qweb_signer/i18n/es_CR.po new file mode 100644 index 00000000..1dc1b7ad --- /dev/null +++ b/report_qweb_signer/i18n/es_CR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_DO.po b/report_qweb_signer/i18n/es_DO.po new file mode 100644 index 00000000..f042701e --- /dev/null +++ b/report_qweb_signer/i18n/es_DO.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_EC.po b/report_qweb_signer/i18n/es_EC.po new file mode 100644 index 00000000..04c07704 --- /dev/null +++ b/report_qweb_signer/i18n/es_EC.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañia" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID (identificación)" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_ES.po b/report_qweb_signer/i18n/es_ES.po new file mode 100644 index 00000000..87f67ba2 --- /dev/null +++ b/report_qweb_signer/i18n/es_ES.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_MX.po b/report_qweb_signer/i18n/es_MX.po new file mode 100644 index 00000000..4da460a7 --- /dev/null +++ b/report_qweb_signer/i18n/es_MX.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_PE.po b/report_qweb_signer/i18n/es_PE.po new file mode 100644 index 00000000..84dfd729 --- /dev/null +++ b/report_qweb_signer/i18n/es_PE.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_PY.po b/report_qweb_signer/i18n/es_PY.po new file mode 100644 index 00000000..b1e11d63 --- /dev/null +++ b/report_qweb_signer/i18n/es_PY.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/es_VE.po b/report_qweb_signer/i18n/es_VE.po new file mode 100644 index 00000000..9c446a14 --- /dev/null +++ b/report_qweb_signer/i18n/es_VE.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/et.po b/report_qweb_signer/i18n/et.po new file mode 100644 index 00000000..daca18b1 --- /dev/null +++ b/report_qweb_signer/i18n/et.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 11:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Ettevõte" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Loonud" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Loodud" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Jada" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/eu.po b/report_qweb_signer/i18n/eu.po new file mode 100644 index 00000000..6e05941e --- /dev/null +++ b/report_qweb_signer/i18n/eu.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-21 05:51+0000\n" +"PO-Revision-Date: 2017-02-23 15:58+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Enpresa" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Nork sortua" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Created on" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Model" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Izena" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekuentzia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fa.po b/report_qweb_signer/i18n/fa.po new file mode 100644 index 00000000..4cc461c8 --- /dev/null +++ b/report_qweb_signer/i18n/fa.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:50+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "شناسه" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "نام" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "دنباله" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fi.po b/report_qweb_signer/i18n/fi.po new file mode 100644 index 00000000..0b356f33 --- /dev/null +++ b/report_qweb_signer/i18n/fi.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 06:04+0000\n" +"PO-Revision-Date: 2017-01-17 12:11+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Yritys" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Luonut" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Luotu" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nimi" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Mall" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nimi" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekvenssi" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fr.po b/report_qweb_signer/i18n/fr.po new file mode 100644 index 00000000..8bde719c --- /dev/null +++ b/report_qweb_signer/i18n/fr.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2017-01-13 09:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Société" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Date" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modèle" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nom" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sequence" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fr_CA.po b/report_qweb_signer/i18n/fr_CA.po new file mode 100644 index 00000000..9e08e628 --- /dev/null +++ b/report_qweb_signer/i18n/fr_CA.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-21 19:23+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Entreprises" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "Identifiant" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modèle" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nom" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fr_CH.po b/report_qweb_signer/i18n/fr_CH.po new file mode 100644 index 00000000..0c8a15ff --- /dev/null +++ b/report_qweb_signer/i18n/fr_CH.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-29 16:14+0000\n" +"PO-Revision-Date: 2016-12-01 10:10+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Créé par" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Créé le" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nom affiché" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/fr_FR.po b/report_qweb_signer/i18n/fr_FR.po new file mode 100644 index 00000000..b15e59d2 --- /dev/null +++ b/report_qweb_signer/i18n/fr_FR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:20+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: French (France) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/gl.po b/report_qweb_signer/i18n/gl.po new file mode 100644 index 00000000..1469d2ef --- /dev/null +++ b/report_qweb_signer/i18n/gl.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Compañía" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creado en" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/gl_ES.po b/report_qweb_signer/i18n/gl_ES.po new file mode 100644 index 00000000..6a002351 --- /dev/null +++ b/report_qweb_signer/i18n/gl_ES.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-11-22 16:25+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/he.po b/report_qweb_signer/i18n/he.po new file mode 100644 index 00000000..afc403e4 --- /dev/null +++ b/report_qweb_signer/i18n/he.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "נוצר ב-" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "השם המוצג" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "מזהה" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "שם" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "רצף" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/hr.po b/report_qweb_signer/i18n/hr.po new file mode 100644 index 00000000..1ff0d11b --- /dev/null +++ b/report_qweb_signer/i18n/hr.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Poduzeće" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Naziv " + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Model" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekvenca" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/hr_HR.po b/report_qweb_signer/i18n/hr_HR.po new file mode 100644 index 00000000..9e5e3668 --- /dev/null +++ b/report_qweb_signer/i18n/hr_HR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Poduzeća" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Poduzeće" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Kreirano" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Naziv" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/hu.po b/report_qweb_signer/i18n/hu.po new file mode 100644 index 00000000..cf10b11b --- /dev/null +++ b/report_qweb_signer/i18n/hu.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Vállalat" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Készítette" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Név" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sorszám" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/id.po b/report_qweb_signer/i18n/id.po new file mode 100644 index 00000000..e263f66e --- /dev/null +++ b/report_qweb_signer/i18n/id.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 05:55+0000\n" +"PO-Revision-Date: 2017-03-10 13:16+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Perusahaan" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Dibuat pada" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nama" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Berurutan" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/it.po b/report_qweb_signer/i18n/it.po new file mode 100644 index 00000000..77481c59 --- /dev/null +++ b/report_qweb_signer/i18n/it.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:21+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Aziende" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Azienda" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creato da" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creato il" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modello" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nome" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sequenza" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ja.po b/report_qweb_signer/i18n/ja.po new file mode 100644 index 00000000..971b3d9d --- /dev/null +++ b/report_qweb_signer/i18n/ja.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:45+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "会社" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "作成者" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "作成日" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "表示名" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "名称" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "付番" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ko.po b/report_qweb_signer/i18n/ko.po new file mode 100644 index 00000000..686b6f2a --- /dev/null +++ b/report_qweb_signer/i18n/ko.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "작성자" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "작성일" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "표시 이름" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "이름" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "순서" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/lt.po b/report_qweb_signer/i18n/lt.po new file mode 100644 index 00000000..8dfabe76 --- /dev/null +++ b/report_qweb_signer/i18n/lt.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Įmonė" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Pavadinimas" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Seka" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/lt_LT.po b/report_qweb_signer/i18n/lt_LT.po new file mode 100644 index 00000000..035cf3af --- /dev/null +++ b/report_qweb_signer/i18n/lt_LT.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2017-01-11 15:35+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Sukūrė" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Sukurta" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/lv.po b/report_qweb_signer/i18n/lv.po new file mode 100644 index 00000000..fea1eac8 --- /dev/null +++ b/report_qweb_signer/i18n/lv.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Uzņēmums" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Izveidoja" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Izveidots" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nosaukums" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sērija" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/mk.po b/report_qweb_signer/i18n/mk.po new file mode 100644 index 00000000..762ace7b --- /dev/null +++ b/report_qweb_signer/i18n/mk.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Компанија" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Креирано од" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Креирано на" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Прикажи име" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Име" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Секвенца" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/mn.po b/report_qweb_signer/i18n/mn.po new file mode 100644 index 00000000..b461f950 --- /dev/null +++ b/report_qweb_signer/i18n/mn.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Компани" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Нэр" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Дараалал" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/nb.po b/report_qweb_signer/i18n/nb.po new file mode 100644 index 00000000..c66fdbfa --- /dev/null +++ b/report_qweb_signer/i18n/nb.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 06:04+0000\n" +"PO-Revision-Date: 2017-01-19 20:16+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Opprettet av" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Opprettet den" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Visnings navn" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Navn" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekvens" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/nb_NO.po b/report_qweb_signer/i18n/nb_NO.po new file mode 100644 index 00000000..66c01632 --- /dev/null +++ b/report_qweb_signer/i18n/nb_NO.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Laget av" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Laget den" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Vis navn" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/nl.po b/report_qweb_signer/i18n/nl.po new file mode 100644 index 00000000..b0885ee8 --- /dev/null +++ b/report_qweb_signer/i18n/nl.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:41+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Naam" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Reeks" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/nl_BE.po b/report_qweb_signer/i18n/nl_BE.po new file mode 100644 index 00000000..2de5c634 --- /dev/null +++ b/report_qweb_signer/i18n/nl_BE.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:39+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Bedrijf" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Gemaakt door" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Gemaakt op" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Schermnaam" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Naam:" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Volgorde" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/pl.po b/report_qweb_signer/i18n/pl.po new file mode 100644 index 00000000..7d98b79a --- /dev/null +++ b/report_qweb_signer/i18n/pl.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:43+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Polish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Utworzone przez" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Utworzono" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nazwa" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Numeracja" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/pt.po b/report_qweb_signer/i18n/pt.po new file mode 100644 index 00000000..a5a921c5 --- /dev/null +++ b/report_qweb_signer/i18n/pt.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 05:41+0000\n" +"PO-Revision-Date: 2017-01-13 09:26+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nome" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modelo" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nome" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sequência" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/pt_BR.po b/report_qweb_signer/i18n/pt_BR.po new file mode 100644 index 00000000..c7b31ffe --- /dev/null +++ b/report_qweb_signer/i18n/pt_BR.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "Identificação" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modelo" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nome" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sequência" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/pt_PT.po b/report_qweb_signer/i18n/pt_PT.po new file mode 100644 index 00000000..3c9f28c0 --- /dev/null +++ b/report_qweb_signer/i18n/pt_PT.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 05:54+0000\n" +"PO-Revision-Date: 2017-03-02 09:14+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Empresa" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Criado por" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Criado em" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Modelo" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Nome" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Relatório" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ro.po b/report_qweb_signer/i18n/ro.po new file mode 100644 index 00000000..8db150a5 --- /dev/null +++ b/report_qweb_signer/i18n/ro.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Companie" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Creat de" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Creat la" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Secventa" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/ru.po b/report_qweb_signer/i18n/ru.po new file mode 100644 index 00000000..7d51afa6 --- /dev/null +++ b/report_qweb_signer/i18n/ru.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:40+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Компания" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Создано" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Создан" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Модель" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Название" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Последовательность" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/sk.po b/report_qweb_signer/i18n/sk.po new file mode 100644 index 00000000..9ab20bb9 --- /dev/null +++ b/report_qweb_signer/i18n/sk.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Spoločnosť" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Vytvoril" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Vytvorené" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Meno" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Postupnosť" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/sl.po b/report_qweb_signer/i18n/sl.po new file mode 100644 index 00000000..281d2f0d --- /dev/null +++ b/report_qweb_signer/i18n/sl.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-04 02:44+0000\n" +"PO-Revision-Date: 2016-05-03 15:03+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "Dovoli le en dokument" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "Pot do datoteke certifikata" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "Certifikati" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Družbe" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Družba" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "Domena" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "Domena, ki določa če naj se dokument podpiše ali ne" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "Naziv datoteke za shranjevanje podpisanega dokumenta kot priponke. Da bi pustili dokument nepodpisan pustite prazno." + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "Če pravilno, se tega certifikata ne more uporabljati za podpisovanje PDF iz več dokumentov." + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Model" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "Model, na katerega se uveljavi ta certifikat" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "PDF certifikati" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "Certifikat PDF poročila" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "Certifikati PDF poročil" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "Partner:" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "Pot do datoteke gesla" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "Pot do datoteke PKCS#12" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "Pot do datoteke gesla certifikata" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Poročilo" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "Shrani kot priponko" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "Shranjevanje podpisanega poročila (PDF): Nimate dovolj pravic za shranjevanje priponk." + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "Podpisovanje poročila (PDF): certifikat ali datoteka z geslom nista najdena" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "Podpisovanje poročila (PDF): jPdfSign neuspešno (koda napake: %s). Sporočilo: %s. Izid: %s" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "Testiranje PDF certifikata" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "Vzorec poročila za testiranje PDF certifikatov" diff --git a/report_qweb_signer/i18n/sr.po b/report_qweb_signer/i18n/sr.po new file mode 100644 index 00000000..ce699ef4 --- /dev/null +++ b/report_qweb_signer/i18n/sr.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Ime" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Niz" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/sr@latin.po b/report_qweb_signer/i18n/sr@latin.po new file mode 100644 index 00000000..a7e4446d --- /dev/null +++ b/report_qweb_signer/i18n/sr@latin.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:49+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Kreirao" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Kreiran" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Ime:" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sekvenca" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/sv.po b/report_qweb_signer/i18n/sv.po new file mode 100644 index 00000000..af312336 --- /dev/null +++ b/report_qweb_signer/i18n/sv.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-14 06:04+0000\n" +"PO-Revision-Date: 2017-01-19 20:16+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Swedish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Företag" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Skapad av" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Skapad den" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Visa namn" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Namn" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Nummerserie" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/th.po b/report_qweb_signer/i18n/th.po new file mode 100644 index 00000000..399c999f --- /dev/null +++ b/report_qweb_signer/i18n/th.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:44+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "บริษัท" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "สร้างโดย" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "รหัส" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "ชื่อ" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "กำหนดเลขที่เอกสาร" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/tr.po b/report_qweb_signer/i18n/tr.po new file mode 100644 index 00000000..0894f908 --- /dev/null +++ b/report_qweb_signer/i18n/tr.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-30 18:54+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "Şirketler" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Şirket" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Alan" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Adı" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sıra" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/tr_TR.po b/report_qweb_signer/i18n/tr_TR.po new file mode 100644 index 00000000..b69a205f --- /dev/null +++ b/report_qweb_signer/i18n/tr_TR.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-31 06:53+0000\n" +"PO-Revision-Date: 2017-01-04 14:44+0000\n" +"Last-Translator: Ozge Altinisik \n" +"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "Sadece bir belgeye izin ver" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "Sertifikalar" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "Firma" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Oluşturan" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Görünen ad" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "Alan" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "Kimlik" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "Tip" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Ad" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "Rapor" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Sıra" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/uk.po b/report_qweb_signer/i18n/uk.po new file mode 100644 index 00000000..5256dcef --- /dev/null +++ b/report_qweb_signer/i18n/uk.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:51+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Створив" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Дата створення" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Name" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Послідовність" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/vi.po b/report_qweb_signer/i18n/vi.po new file mode 100644 index 00000000..6f6be3f6 --- /dev/null +++ b/report_qweb_signer/i18n/vi.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-18 04:34+0000\n" +"PO-Revision-Date: 2016-10-11 09:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Được tạo vào" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "Tên" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "Trình tự" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/vi_VN.po b/report_qweb_signer/i18n/vi_VN.po new file mode 100644 index 00000000..58f59ff4 --- /dev/null +++ b/report_qweb_signer/i18n/vi_VN.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-24 04:38+0000\n" +"PO-Revision-Date: 2016-12-27 08:24+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "Tạo bởi" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "Tạo vào" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/zh_CN.po b/report_qweb_signer/i18n/zh_CN.po new file mode 100644 index 00000000..9370cef1 --- /dev/null +++ b/report_qweb_signer/i18n/zh_CN.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-25 05:54+0000\n" +"PO-Revision-Date: 2017-03-03 07:08+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "公司" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "创建者" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "创建时间" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "显示名称" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "ID" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "名称" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "序号" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/i18n/zh_TW.po b/report_qweb_signer/i18n/zh_TW.po new file mode 100644 index 00000000..8c5480c6 --- /dev/null +++ b/report_qweb_signer/i18n/zh_TW.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_qweb_signer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-28 06:59+0000\n" +"PO-Revision-Date: 2017-04-25 10:42+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_qweb_signer +#: field:report.certificate,allow_only_one:0 +msgid "Allow only one document" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,path:0 +msgid "Certificate file path" +msgstr "" + +#. module: report_qweb_signer +#: view:res.company:report_qweb_signer.view_company_form +msgid "Certificates" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,company_id:0 +msgid "Company" +msgstr "公司" + +#. module: report_qweb_signer +#: field:report.certificate,create_uid:0 +msgid "Created by" +msgstr "建立者" + +#. module: report_qweb_signer +#: field:report.certificate,create_date:0 +msgid "Created on" +msgstr "建立於" + +#. module: report_qweb_signer +#: field:report.certificate,display_name:0 +msgid "Display Name" +msgstr "顯示名稱" + +#. module: report_qweb_signer +#: field:report.certificate,domain:0 +msgid "Domain" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,domain:0 +msgid "Domain for filtering if sign or not the document" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,attachment:0 +msgid "" +"Filename used to store signed document as attachment. Keep empty to not save" +" signed document." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,id:0 +msgid "ID" +msgstr "編號" + +#. module: report_qweb_signer +#: help:report.certificate,allow_only_one:0 +msgid "" +"If True, this certificate can not be useb to sign a PDF from several " +"documents." +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,__last_update:0 +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: report_qweb_signer +#: field:report.certificate,write_uid:0 +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: report_qweb_signer +#: field:report.certificate,write_date:0 +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: report_qweb_signer +#: field:report.certificate,model_id:0 +msgid "Model" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,model_id:0 +msgid "Model where apply this certificate" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,name:0 +msgid "Name" +msgstr "名稱" + +#. module: report_qweb_signer +#: model:ir.actions.act_window,name:report_qweb_signer.action_report_certificate +#: model:ir.ui.menu,name:report_qweb_signer.menu_report_certificate +msgid "PDF certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_form +msgid "PDF report certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:report.certificate:report_qweb_signer.view_report_certificate_tree +#: field:res.company,report_certificate_ids:0 +msgid "PDF report certificates" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "Partner:" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,password_file:0 +msgid "Password file path" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,path:0 +msgid "Path to PKCS#12 certificate file" +msgstr "" + +#. module: report_qweb_signer +#: help:report.certificate,password_file:0 +msgid "Path to certificate password file" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.model,name:report_qweb_signer.model_report +msgid "Report" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,attachment:0 +msgid "Save as attachment" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:119 +#, python-format +msgid "" +"Saving signed report (PDF): You do not have enought access rights to save " +"attachments" +msgstr "" + +#. module: report_qweb_signer +#: field:report.certificate,sequence:0 +msgid "Sequence" +msgstr "序列" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:139 +#, python-format +msgid "Signing report (PDF): Certificate or password file not found" +msgstr "" + +#. module: report_qweb_signer +#: code:addons/report_qweb_signer/models/report.py:148 +#, python-format +msgid "" +"Signing report (PDF): jPdfSign failed (error code: %s). Message: %s. Output:" +" %s" +msgstr "" + +#. module: report_qweb_signer +#: model:ir.actions.report.xml,name:report_qweb_signer.partner_demo +msgid "Test PDF certificate" +msgstr "" + +#. module: report_qweb_signer +#: view:website:report_qweb_signer.report_partner_demo_document +msgid "This is a sample report for testing PDF certificates" +msgstr "" diff --git a/report_qweb_signer/models/__init__.py b/report_qweb_signer/models/__init__.py new file mode 100644 index 00000000..605d2118 --- /dev/null +++ b/report_qweb_signer/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingenieria S.L. - Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import report +from . import report_certificate +from . import res_company diff --git a/report_qweb_signer/models/report.py b/report_qweb_signer/models/report.py new file mode 100644 index 00000000..e990bbb0 --- /dev/null +++ b/report_qweb_signer/models/report.py @@ -0,0 +1,173 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Tecnativa - Antonio Espinosa +# Copyright 2017 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import base64 +from contextlib import closing +import os +import subprocess +import tempfile +import time + +from odoo import models, api, _ +from odoo.exceptions import UserError, AccessError +from odoo.tools.safe_eval import safe_eval + +import logging +_logger = logging.getLogger(__name__) + + +def _normalize_filepath(path): + path = path or '' + path = path.strip() + if not os.path.isabs(path): + me = os.path.dirname(__file__) + path = '{}/../static/certificate/'.format(me) + path + path = os.path.normpath(path) + return path if os.path.exists(path) else False + + +class Report(models.Model): + _inherit = 'report' + + def _certificate_get(self, report, docids): + """Obtain the proper certificate for the report and the conditions.""" + if report.report_type != 'qweb-pdf': + return False + certificates = self.env['report.certificate'].search([ + ('company_id', '=', self.env.user.company_id.id), + ('model_id', '=', report.model), + ]) + if not certificates: + return False + for cert in certificates: + # Check allow only one document + if cert.allow_only_one and len(self) > 1: + _logger.debug( + "Certificate '%s' allows only one document, " + "but printing %d documents", + cert.name, len(docids)) + continue + # Check domain + if cert.domain: + domain = [('id', 'in', tuple(docids))] + domain = domain + safe_eval(cert.domain) + docs = self.env[cert.model_id.model].search(domain) + if not docs: + _logger.debug( + "Certificate '%s' domain not satisfied", cert.name) + continue + # Certificate match! + return cert + return False + + def _attach_filename_get(self, docids, certificate): + if len(docids) != 1: + return False + doc = self.env[certificate.model_id.model].browse(docids[0]) + return safe_eval(certificate.attachment, { + 'object': doc, + 'time': time + }) + + def _attach_signed_read(self, docids, certificate): + if len(docids) != 1: + return False + filename = self._attach_filename_get(docids, certificate) + if not filename: + return False + attachment = self.env['ir.attachment'].search([ + ('datas_fname', '=', filename), + ('res_model', '=', certificate.model_id.model), + ('res_id', '=', docids[0]), + ], limit=1) + if attachment: + return base64.decodestring(attachment.datas) + return False + + def _attach_signed_write(self, docids, certificate, signed): + if len(docids) != 1: + return False + filename = self._attach_filename_get(docids, certificate) + if not filename: + return False + try: + attachment = self.env['ir.attachment'].create({ + 'name': filename, + 'datas': base64.encodestring(signed), + 'datas_fname': filename, + 'res_model': certificate.model_id.model, + 'res_id': docids[0], + }) + except AccessError: + raise UserError( + _('Saving signed report (PDF): ' + 'You do not have enough access rights to save attachments')) + return attachment + + def _signer_bin(self, opts): + me = os.path.dirname(__file__) + java_bin = 'java -jar -Xms4M -Xmx4M' + jar = '{}/../static/jar/jPdfSign.jar'.format(me) + return '%s %s %s' % (java_bin, jar, opts) + + def pdf_sign(self, pdf, certificate): + pdfsigned = pdf + '.signed.pdf' + p12 = _normalize_filepath(certificate.path) + passwd = _normalize_filepath(certificate.password_file) + if not (p12 and passwd): + raise UserError( + _('Signing report (PDF): ' + 'Certificate or password file not found')) + signer_opts = '"%s" "%s" "%s" "%s"' % (p12, pdf, pdfsigned, passwd) + signer = self._signer_bin(signer_opts) + process = subprocess.Popen( + signer, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) + out, err = process.communicate() + if process.returncode: + raise UserError( + _('Signing report (PDF): jPdfSign failed (error code: %s). ' + 'Message: %s. Output: %s') % + (process.returncode, err, out)) + return pdfsigned + + @api.model + def get_pdf(self, docids, report_name, html=None, data=None): + report = self._get_report_from_name(report_name) + certificate = self._certificate_get(report, docids) + if certificate and certificate.attachment: + signed_content = self._attach_signed_read(docids, certificate) + if signed_content: + _logger.debug( + "The signed PDF document '%s/%s' was loaded from the " + "database", report_name, docids, + ) + return signed_content + content = super(Report, self).get_pdf( + docids, report_name, html=html, data=data, + ) + if certificate: + # Creating temporary origin PDF + pdf_fd, pdf = tempfile.mkstemp( + suffix='.pdf', prefix='report.tmp.') + with closing(os.fdopen(pdf_fd, 'w')) as pf: + pf.write(content) + _logger.debug( + "Signing PDF document '%s' for IDs %s with certificate '%s'", + report_name, docids, certificate.name, + ) + signed = self.pdf_sign(pdf, certificate) + # Read signed PDF + if os.path.exists(signed): + with open(signed, 'rb') as pf: + content = pf.read() + # Manual cleanup of the temporary files + for fname in (pdf, signed): + try: + os.unlink(fname) + except (OSError, IOError): + _logger.error('Error when trying to remove file %s', fname) + if certificate.attachment: + self._attach_signed_write(docids, certificate, content) + return content diff --git a/report_qweb_signer/models/report_certificate.py b/report_qweb_signer/models/report_certificate.py new file mode 100644 index 00000000..c2f000ba --- /dev/null +++ b/report_qweb_signer/models/report_certificate.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingenieria S.L. - Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, fields, models + + +class ReportCertificate(models.Model): + _name = 'report.certificate' + _order = 'sequence,id' + + @api.model + def _default_company(self): + m_company = self.env['res.company'] + return m_company._company_default_get('report.certificate') + + sequence = fields.Integer(default=10) + name = fields.Char(required=True) + path = fields.Char( + string="Certificate file path", required=True, + help="Path to PKCS#12 certificate file") + password_file = fields.Char( + string="Password file path", required=True, + help="Path to certificate password file") + model_id = fields.Many2one( + string="Model", required=True, + comodel_name='ir.model', + help="Model where apply this certificate") + domain = fields.Char( + string="Domain", + help="Domain for filtering if sign or not the document") + allow_only_one = fields.Boolean( + string="Allow only one document", default=True, + help="If True, this certificate can not be useb to sign " + "a PDF from several documents.") + attachment = fields.Char( + string="Save as attachment", + help="Filename used to store signed document as attachment. " + "Keep empty to not save signed document.") + company_id = fields.Many2one( + string='Company', comodel_name='res.company', + required=True, default=_default_company) diff --git a/report_qweb_signer/models/res_company.py b/report_qweb_signer/models/res_company.py new file mode 100644 index 00000000..a71825f6 --- /dev/null +++ b/report_qweb_signer/models/res_company.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingenieria S.L. - Antonio Espinosa +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import models, fields + + +class ResCompany(models.Model): + _inherit = 'res.company' + + report_certificate_ids = fields.One2many( + string="PDF report certificates", + comodel_name='report.certificate', + inverse_name='company_id') diff --git a/report_qweb_signer/security/ir.model.access.csv b/report_qweb_signer/security/ir.model.access.csv new file mode 100644 index 00000000..e04b17c6 --- /dev/null +++ b/report_qweb_signer/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_report_certificate_public","report_certificate group_public","model_report_certificate","base.group_user",1,0,0,0 +"access_report_certificate_manager","report_certificate group_manager","model_report_certificate","base.group_erp_manager",1,1,1,1 diff --git a/report_qweb_signer/static/certificate/test.p12 b/report_qweb_signer/static/certificate/test.p12 new file mode 100644 index 00000000..eca08285 Binary files /dev/null and b/report_qweb_signer/static/certificate/test.p12 differ diff --git a/report_qweb_signer/static/certificate/test.passwd b/report_qweb_signer/static/certificate/test.passwd new file mode 100644 index 00000000..f77b0040 --- /dev/null +++ b/report_qweb_signer/static/certificate/test.passwd @@ -0,0 +1 @@ +admin \ No newline at end of file diff --git a/report_qweb_signer/static/description/icon.png b/report_qweb_signer/static/description/icon.png new file mode 100644 index 00000000..9c3fc036 Binary files /dev/null and b/report_qweb_signer/static/description/icon.png differ diff --git a/report_qweb_signer/static/description/noun_65694_cc.svg b/report_qweb_signer/static/description/noun_65694_cc.svg new file mode 100644 index 00000000..3305279f --- /dev/null +++ b/report_qweb_signer/static/description/noun_65694_cc.svg @@ -0,0 +1 @@ +Created by Anton Noskovfrom the Noun Project \ No newline at end of file diff --git a/report_qweb_signer/static/jar/itext-1.4.8.jar b/report_qweb_signer/static/jar/itext-1.4.8.jar new file mode 100644 index 00000000..dbbd4280 Binary files /dev/null and b/report_qweb_signer/static/jar/itext-1.4.8.jar differ diff --git a/report_qweb_signer/static/jar/jPdfSign.jar b/report_qweb_signer/static/jar/jPdfSign.jar new file mode 100644 index 00000000..784b11fc Binary files /dev/null and b/report_qweb_signer/static/jar/jPdfSign.jar differ diff --git a/report_qweb_signer/static/src/java/JPdfSign.java b/report_qweb_signer/static/src/java/JPdfSign.java new file mode 100644 index 00000000..3f4f4165 --- /dev/null +++ b/report_qweb_signer/static/src/java/JPdfSign.java @@ -0,0 +1,333 @@ +import java.io.BufferedReader; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStreamReader; +import java.net.URL; +import java.net.URLDecoder; +import java.security.CodeSource; +import java.security.KeyStore; +import java.security.KeyStoreException; +import java.security.NoSuchAlgorithmException; +import java.security.PrivateKey; +import java.security.Provider; +import java.security.ProviderException; +import java.security.Security; +import java.security.UnrecoverableKeyException; +import java.security.cert.Certificate; +import java.security.cert.CertificateException; +import java.util.NoSuchElementException; +import java.util.ResourceBundle; + +import sun.security.pkcs11.SunPKCS11; + +import com.lowagie.text.pdf.PdfReader; +import com.lowagie.text.pdf.PdfSignatureAppearance; +import com.lowagie.text.pdf.PdfStamper; + +/* +import com.itextpdf.text.pdf.PdfReader; +import com.itextpdf.text.pdf.PdfSignatureAppearance; +import com.itextpdf.text.pdf.PdfStamper; +*/ + +/** + * + * @author Jan Peter Stotz + * + */ +public class JPdfSign { + + private static PrivateKey privateKey; + + private static Certificate[] certificateChain; + + private static ResourceBundle bundle = ResourceBundle.getBundle("strings"); + + private static String PRODUCTNAME = bundle.getString("productname"); + + private static String VERSION = bundle.getString("version"); + + private static String JAR_FILENAME = bundle.getString("jar-filename"); + + public static void main(String[] args) { + // for (int i = 0; i < args.length; i++) { + // System.out.println("arg[" + i + "] :" + args[i]); + // } + if (args.length < 2) + showUsage(); + + try { + + String pkcs12FileName = args[0].trim(); + String pdfInputFileName = args[1]; + String pdfOutputFileName = args[2]; + boolean usePKCS12 = !(pkcs12FileName.equals("-PKCS11")); + + String passwdfile = ""; + if (args.length == 4) { + passwdfile = args[3]; + } + // System.out.println(""); + // System.out.println("pdfInputFileName : " + pdfInputFileName); + // System.out.println("pdfOutputFileName: " + pdfOutputFileName); + + if (usePKCS12) + readPrivateKeyFromPKCS12(pkcs12FileName, passwdfile); + else + readPrivateKeyFromPKCS11(); + + PdfReader reader = null; + try { + reader = new PdfReader(pdfInputFileName); + } catch (IOException e) { + System.err + .println("An unknown error accoured while opening the input PDF file: \"" + + pdfInputFileName + "\""); + e.printStackTrace(); + System.exit(-1); + } + FileOutputStream fout = null; + try { + fout = new FileOutputStream(pdfOutputFileName); + } catch (FileNotFoundException e) { + System.err + .println("An unknown error accoured while opening the output PDF file: \"" + + pdfOutputFileName + "\""); + e.printStackTrace(); + System.exit(-1); + } + PdfStamper stp = null; + try { + stp = PdfStamper.createSignature(reader, fout, '\0', null, true); + PdfSignatureAppearance sap = stp.getSignatureAppearance(); + sap.setCrypto(privateKey, certificateChain, null, PdfSignatureAppearance.WINCER_SIGNED); + // sap.setCrypto(privateKey, certificateChain, null, null); + // sap.setReason("I'm the author"); + // sap.setLocation("Lisbon"); + // sap.setVisibleSignature(new Rectangle(100, 100, 200, 200), 1, + // null); + sap.setCertified(true); + stp.close(); + } catch (Exception e) { + System.err + .println("An unknown error accoured while signing the PDF file:"); + e.printStackTrace(); + System.exit(-1); + } + } catch (KeyStoreException kse) { + System.err + .println("An unknown error accoured while initializing the KeyStore instance:"); + kse.printStackTrace(); + System.exit(-1); + } + } + + private static void readPrivateKeyFromPKCS11() throws KeyStoreException { + // Initialize PKCS#11 provider from config file + String configFileName = getConfigFilePath("pkcs11.cfg"); + + Provider p = null; + try { + p = new SunPKCS11(configFileName); + Security.addProvider(p); + } catch (ProviderException e) { + System.err + .println("Unable to load PKCS#11 provider with config file: " + + configFileName); + e.printStackTrace(); + System.exit(-1); + } + String pkcs11PIN = "000000"; + System.out.print("Please enter the smartcard pin: "); + try { + BufferedReader in = new BufferedReader(new InputStreamReader( + System.in)); + pkcs11PIN = in.readLine(); + // System.out.println(pkcs11PIN); + // System.out.println(pkcs11PIN.length()); + } catch (Exception e) { + System.err + .println("An unknown error accoured while reading the PIN:"); + e.printStackTrace(); + System.exit(-1); + } + KeyStore ks = null; + try { + ks = KeyStore.getInstance("pkcs11", p); + ks.load(null, pkcs11PIN.toCharArray()); + } catch (NoSuchAlgorithmException e) { + System.err + .println("An unknown error accoured while reading the PKCS#11 smartcard:"); + e.printStackTrace(); + System.exit(-1); + } catch (CertificateException e) { + System.err + .println("An unknown error accoured while reading the PKCS#11 smartcard:"); + e.printStackTrace(); + System.exit(-1); + } catch (IOException e) { + System.err + .println("An unknown error accoured while reading the PKCS#11 smartcard:"); + e.printStackTrace(); + System.exit(-1); + } + + String alias = ""; + try { + alias = (String) ks.aliases().nextElement(); + privateKey = (PrivateKey) ks.getKey(alias, pkcs11PIN.toCharArray()); + } catch (NoSuchElementException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + System.err + .println("The selected PKCS#12 file does not contain any private keys."); + e.printStackTrace(); + System.exit(-1); + } catch (NoSuchAlgorithmException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + e.printStackTrace(); + System.exit(-1); + } catch (UnrecoverableKeyException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + e.printStackTrace(); + System.exit(-1); + } + certificateChain = ks.getCertificateChain(alias); + } + + protected static void readPrivateKeyFromPKCS12(String pkcs12FileName, String pwdFile) + throws KeyStoreException { + String pkcs12Password = ""; + KeyStore ks = null; + if (!pwdFile.equals("")) { + try { + FileInputStream pwdfis = new FileInputStream(pwdFile); + byte[] pwd = new byte[1024]; + try { + do { + int r = pwdfis.read(pwd); + if (r < 0) { + break; + } + pkcs12Password += new String(pwd); + pkcs12Password = pkcs12Password.trim(); + } while (pwdfis.available() > 0); + pwdfis.close(); + } catch (IOException ex) { + System.err + .println("Can't read password file: " + pwdFile); + } + } catch (FileNotFoundException fnfex) { + System.err + .println("Password file not found: " + pwdFile); + } + } else { + System.out.print("Please enter the password for \"" + pkcs12FileName + + "\": "); + try { + BufferedReader in = new BufferedReader(new InputStreamReader( + System.in)); + pkcs12Password = in.readLine(); + } catch (Exception e) { + System.err + .println("An unknown error accoured while reading the password:"); + e.printStackTrace(); + System.exit(-1); + } + } + + try { + ks = KeyStore.getInstance("pkcs12"); + ks.load(new FileInputStream(pkcs12FileName), pkcs12Password + .toCharArray()); + } catch (NoSuchAlgorithmException e) { + System.err + .println("An unknown error accoured while reading the PKCS#12 file:"); + e.printStackTrace(); + System.exit(-1); + } catch (CertificateException e) { + System.err + .println("An unknown error accoured while reading the PKCS#12 file:"); + e.printStackTrace(); + System.exit(-1); + } catch (FileNotFoundException e) { + System.err.println("Unable to open the PKCS#12 keystore file \"" + + pkcs12FileName + "\":"); + System.err + .println("The file does not exists or missing read permission."); + System.exit(-1); + } catch (IOException e) { + System.err + .println("An unknown error accoured while reading the PKCS#12 file:"); + e.printStackTrace(); + System.exit(-1); + } + String alias = ""; + try { + alias = (String) ks.aliases().nextElement(); + privateKey = (PrivateKey) ks.getKey(alias, pkcs12Password + .toCharArray()); + } catch (NoSuchElementException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + System.err + .println("The selected PKCS#12 file does not contain any private keys."); + e.printStackTrace(); + System.exit(-1); + } catch (NoSuchAlgorithmException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + e.printStackTrace(); + System.exit(-1); + } catch (UnrecoverableKeyException e) { + System.err + .println("An unknown error accoured while retrieving the private key:"); + e.printStackTrace(); + System.exit(-1); + } + certificateChain = ks.getCertificateChain(alias); + } + + protected static String getConfigFilePath(String configFilename) { + CodeSource source = JPdfSign.class.getProtectionDomain() + .getCodeSource(); + URL url = source.getLocation(); + + String jarPath = URLDecoder.decode(url.getFile()); + File f = new File(jarPath); + try { + jarPath = f.getCanonicalPath(); + } catch (IOException e) { + } + if (!f.isDirectory()) { + f = new File(jarPath); + jarPath = f.getParent(); + } + System.out.println(jarPath); + if (jarPath.length() > 0) { + return jarPath + File.separator + configFilename; + } else + return configFilename; + } + + public static void showUsage() { + System.out.println("jPdfSign v" + VERSION + + " by Jan Peter Stotz - jpstotz@gmx.de\n"); + System.out.println(PRODUCTNAME + " usage:"); + System.out + .println("\nFor using a PKCS#12 (.p12) file as signature certificate and private key source:"); + System.out.print("\tjava -jar " + JAR_FILENAME); + System.out + .println(" pkcs12FileName pdfInputFileName pdfOutputFileName"); + System.out + .println("\nFor using a PKCS#11 smartcard as signature certificate and private key source:"); + System.out.print("\tjava -jar" + JAR_FILENAME); + System.out.println(" -PKCS11 pdfInputFileName pdfOutputFileName"); + System.exit(0); + } +} diff --git a/report_qweb_signer/static/src/java/strings.properties b/report_qweb_signer/static/src/java/strings.properties new file mode 100644 index 00000000..5e9054fb --- /dev/null +++ b/report_qweb_signer/static/src/java/strings.properties @@ -0,0 +1,3 @@ +productname=jPdfSign +version=0.3.1 +jar-filename=jPdfSign.jar \ No newline at end of file diff --git a/report_qweb_signer/tests/__init__.py b/report_qweb_signer/tests/__init__.py new file mode 100644 index 00000000..97f37fe5 --- /dev/null +++ b/report_qweb_signer/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_report_qweb_signer diff --git a/report_qweb_signer/tests/test_report_qweb_signer.py b/report_qweb_signer/tests/test_report_qweb_signer.py new file mode 100644 index 00000000..e285161d --- /dev/null +++ b/report_qweb_signer/tests/test_report_qweb_signer.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Tecnativa - Pedro M. Baeza +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests import common + + +@common.at_install(False) +@common.post_install(True) +class TestReportQwebSigner(common.SavepointCase): + @classmethod + def setUpClass(cls): + super(TestReportQwebSigner, cls).setUpClass() + cls.partner = cls.env['res.partner'].create({ + 'name': 'Test partner', + 'customer': True, + }) + cls.report = cls.env.ref('report_qweb_signer.partner_demo_report') + + def test_report_qweb_signer(self): + self.env['report'].get_pdf( + self.partner.ids, self.report.report_name, data={}, + ) + # Reprint again for taking the PDF from attachment + self.env['report'].get_pdf( + self.partner.ids, self.report.report_name, data={}, + ) diff --git a/report_qweb_signer/views/report_certificate_view.xml b/report_qweb_signer/views/report_certificate_view.xml new file mode 100644 index 00000000..cdc73168 --- /dev/null +++ b/report_qweb_signer/views/report_certificate_view.xml @@ -0,0 +1,65 @@ + + + + + + report.certificate.form + report.certificate + +
+ +
+
+ + + + + + + + + + + + + +
+
+
+
+ + + report.certificate.tree + report.certificate + + + + + + + + + + + + + + PDF certificates + report.certificate + form + tree,form + + + + +
diff --git a/report_qweb_signer/views/res_company_view.xml b/report_qweb_signer/views/res_company_view.xml new file mode 100644 index 00000000..983c2491 --- /dev/null +++ b/report_qweb_signer/views/res_company_view.xml @@ -0,0 +1,26 @@ + + + + + + Add PDF report certificates list + + res.company + + + + + + + + + + + +