diff --git a/report_xml/README.rst b/report_xml/README.rst new file mode 100644 index 0000000000..6c0e70d1f5 --- /dev/null +++ b/report_xml/README.rst @@ -0,0 +1,156 @@ +=========== +XML Reports +=========== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:f5a881c0eade552010cfe051f392fb1c7a5d474081f114d52a1f2a21d851096f + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png + :target: https://odoo-community.org/page/development-status + :alt: Production/Stable +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Freporting--engine-lightgray.png?logo=github + :target: https://github.com/OCA/reporting-engine/tree/18.0/report_xml + :alt: OCA/reporting-engine +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/reporting-engine-18-0/reporting-engine-18-0-report_xml + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/reporting-engine&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module was written to extend the functionality of the reporting +engine to support XML reports and allow modules to generate them by code +or by QWeb templates. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +To install this module, you need to: + +- Install `lxml `__ in Odoo's ``$PYTHONPATH``. +- Install the repository + `reporting-engine `__. + +But this module does nothing for the end user by itself, so if you have +it installed it's probably because there is another module that depends +on it. + +Usage +===== + +This module is intended as a base engine for other modules to use it, so +no direct result if you are a user. + +If you are a developer +---------------------- + +To learn from an example, just check the `demo +report `__ +on GitHub for the model ``res.company`` or check it in interface from +companies views. + +To develop with this module, you need to: + +- Create a module. +- Make it depend on this one. +- Follow `instructions to create + reports `__ + having in mind that the ``report_type`` field in your + ``ir.actions.report`` record must be ``qweb-xml``. + +In case you want to create a `custom +report `__, +the instructions remain the same as for HTML reports, and the method +that you must override is also called ``_get_report_values``, even when +this time you are creating a XML report. + +You can make your custom report inherit ``report.report_xml.abstract``, +name it in such way ``report.``. Also you can add a +XSD file for report validation into ``xsd_schema`` field of your report +(check `report +definition `__) +and have XSD automatic checking for free. + +You can customize rendering process and validation way via changing +logic of ``generate_report`` and ``validate_report`` methods in your +report class. + +You can visit +``http:///report/xml//`` to see +your XML report online as a web page. + +For further information, please visit: + +- https://www.odoo.com/forum/help-1 +- https://github.com/OCA/reporting-engine + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa +* Avoin.Systems + +Contributors +------------ + +- Enric Tobella + +- `Tecnativa `__: + + - Jairo Llopis + +- `Avoin.Systems `__: + + - Tatiana Deribina + +- Iván Antón + +Other credits +------------- + +- Icon taken from http://commons.wikimedia.org/wiki/File:Text-xml.svg + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/reporting-engine `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/report_xml/__init__.py b/report_xml/__init__.py new file mode 100644 index 0000000000..64ad933661 --- /dev/null +++ b/report_xml/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from . import controllers +from . import models +from . import reports +from .hooks import post_init_hook diff --git a/report_xml/__manifest__.py b/report_xml/__manifest__.py new file mode 100644 index 0000000000..550df3916a --- /dev/null +++ b/report_xml/__manifest__.py @@ -0,0 +1,33 @@ +# Copyright (C) 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). +{ + "name": "XML Reports", + "version": "18.0.1.0.0", + "category": "Reporting", + "website": "https://github.com/OCA/reporting-engine", + "development_status": "Production/Stable", + "author": "Tecnativa, Odoo Community Association (OCA), Avoin.Systems", + "license": "AGPL-3", + "installable": True, + "application": False, + "summary": "Allow to generate XML reports", + "depends": ["web"], + "data": [ + "views/ir_actions_report_view.xml", + ], + "assets": { + "web.assets_backend": [ + "report_xml/static/src/js/report/action_manager_report.esm.js", + ], + }, + "demo": [ + "demo/report.xml", # register report in the system + "demo/demo_report.xml", # report body definition + ], + "external_dependencies": { + "python": [ # Python third party libraries required for module + "lxml" # XML and HTML with Python + ] + }, + "post_init_hook": "post_init_hook", +} diff --git a/report_xml/controllers/__init__.py b/report_xml/controllers/__init__.py new file mode 100644 index 0000000000..27f759ab0e --- /dev/null +++ b/report_xml/controllers/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from . import report diff --git a/report_xml/controllers/report.py b/report_xml/controllers/report.py new file mode 100644 index 0000000000..d5e9a65846 --- /dev/null +++ b/report_xml/controllers/report.py @@ -0,0 +1,91 @@ +# Copyright (C) 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +import json +import logging + +from werkzeug.urls import url_parse + +from odoo.http import content_disposition, request, route, serialize_exception +from odoo.tools import html_escape +from odoo.tools.safe_eval import safe_eval, time + +from odoo.addons.web.controllers import report + +_logger = logging.getLogger(__name__) + + +class ReportController(report.ReportController): + @route() + def report_routes( + self, reportname, docids=None, converter=None, options=None, **kwargs + ): + if converter != "xml": + return super().report_routes( + reportname, + docids=docids, + converter=converter, + options=options, + **kwargs, + ) + if docids: + docids = [int(_id) for _id in docids.split(",")] + data = {**json.loads(options or "{}"), **kwargs} + context = dict(request.env.context) + if "context" in data: + data["context"] = json.loads(data["context"] or "{}") + # Ignore 'lang' here, because the context in data is the one from the + # webclient *but* if the user explicitely wants to change the lang, this + # mechanism overwrites it. + if "lang" in data["context"]: + del data["context"]["lang"] + context.update(data["context"]) + report_Obj = request.env["ir.actions.report"] + xml = report_Obj.with_context(**context)._render_qweb_xml( + reportname, docids, data=data + )[0] + xmlhttpheaders = [("Content-Type", "text/xml"), ("Content-Length", len(xml))] + return request.make_response(xml, headers=xmlhttpheaders) + + @route() + def report_download(self, data, context=None, token=None): + requestcontent = json.loads(data) + url, report_type = requestcontent[0], requestcontent[1] + reportname = "???" + if report_type != "qweb-xml": + return super().report_download(data, context=context, token=token) + try: + reportname = url.split("/report/xml/")[1].split("?")[0] + docids = None + if "/" in reportname: + reportname, docids = reportname.split("/") + report = request.env["ir.actions.report"]._get_report_from_name(reportname) + filename = None + if docids: + response = self.report_routes( + reportname, docids=docids, converter="xml", context=context + ) + ids = [int(x) for x in docids.split(",")] + obj = request.env[report.model].browse(ids) + if report.print_report_name and not len(obj) > 1: + report_name = safe_eval( + report.print_report_name, {"object": obj, "time": time} + ) + filename = f"{report_name}.{report.xml_extension}" + else: + data = url_parse(url).decode_query(cls=dict) + if "context" in data: + context = json.loads(context or "{}") + data_context = json.loads(data.pop("context")) + context = json.dumps({**context, **data_context}) + response = self.report_routes( + reportname, converter="xml", context=context, **data + ) + filename = filename or f"{report.name}.{report.xml_extension}" + response.headers.add("Content-Disposition", content_disposition(filename)) + return response + except Exception as e: + _logger.exception(f"Error while generating report {reportname}") + se = serialize_exception(e) + error = {"code": 200, "message": "Odoo Server Error", "data": se} + return request.make_response(html_escape(json.dumps(error))) diff --git a/report_xml/demo/demo_report.xml b/report_xml/demo/demo_report.xml new file mode 100644 index 0000000000..521ff610c5 --- /dev/null +++ b/report_xml/demo/demo_report.xml @@ -0,0 +1,12 @@ + + + + diff --git a/report_xml/demo/demo_report.xsd b/report_xml/demo/demo_report.xsd new file mode 100644 index 0000000000..385a123dba --- /dev/null +++ b/report_xml/demo/demo_report.xsd @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/report_xml/demo/report.xml b/report_xml/demo/report.xml new file mode 100644 index 0000000000..e2c03c1101 --- /dev/null +++ b/report_xml/demo/report.xml @@ -0,0 +1,18 @@ + + + + Demo xml report + res.company + qweb-xml + report_xml.demo_report_xml_view + res_company + + report + + + + diff --git a/report_xml/hooks.py b/report_xml/hooks.py new file mode 100644 index 0000000000..932bfdbf27 --- /dev/null +++ b/report_xml/hooks.py @@ -0,0 +1,41 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +import os + + +def post_init_hook(env): + """ + Loaded after installing this module, and before the next module starts + installing. + + Add XSD Validation Schema for a demo report if it's in the system. + Demo data records are always created with `noupdate == True` and render of + tag `report` doesn't support new `ir.actions.report` field `xsd_schema`. + Thus it is impossible to define `xsd_schema` in the demo definition or add + schema after that via xml update record. Therefore it possible to add value + to `xsd_schema` field for demo record only via hook. + + Args: + * env(odoo.api.Environment) - provides access to the models + """ + report_domain = [ + ("report_name", "=", "report_xml.demo_report_xml_view") # report tech name + ] + demo_report = env["ir.actions.report"].search(report_domain, limit=1) + if demo_report: + dir_path = os.path.dirname(__file__) + xsd_file_relative_path = "demo/demo_report.xsd" + xsd_file_full_path = os.path.join(dir_path, xsd_file_relative_path) + + with open(xsd_file_full_path) as xsd: + # `xsd_schema` is binary fields with an attribute + # `attachment=True` so XSD Schema will be added as attachment + attach_vals = { + "name": "Demo Report.xsd", + "datas": xsd.read(), + "res_model": "ir.actions.report", + "res_id": demo_report.id, + "res_field": "xsd_schema", + "type": "binary", + } + env["ir.attachment"].create(attach_vals) diff --git a/report_xml/i18n/am.po b/report_xml/i18n/am.po new file mode 100644 index 0000000000..73d9da6948 --- /dev/null +++ b/report_xml/i18n/am.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-15 19:59+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Amharic (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/ar.po b/report_xml/i18n/ar.po new file mode 100644 index 0000000000..7d7fc4bdd2 --- /dev/null +++ b/report_xml/i18n/ar.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Arabic (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "اسم العرض" + +#~ msgid "ID" +#~ msgstr "المعرف" + +#~ msgid "Last Modified on" +#~ msgstr "آخر تعديل في" diff --git a/report_xml/i18n/bg.po b/report_xml/i18n/bg.po new file mode 100644 index 0000000000..68f9185c05 --- /dev/null +++ b/report_xml/i18n/bg.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Име за Показване" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Последно обновено на" diff --git a/report_xml/i18n/bs.po b/report_xml/i18n/bs.po new file mode 100644 index 0000000000..18e7df5f1d --- /dev/null +++ b/report_xml/i18n/bs.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Prikaži naziv" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnje mijenjano" diff --git a/report_xml/i18n/ca.po b/report_xml/i18n/ca.po new file mode 100644 index 0000000000..d60ccd12e8 --- /dev/null +++ b/report_xml/i18n/ca.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2022-06-15 18:05+0000\n" +"Last-Translator: jabelchi \n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +#, fuzzy +msgid "Abstract XML Report" +msgstr "Informe XML abstracte" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" +"Afegiu `` al començament de la " +"darrera fila de l'informe." + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "Informe XML de demo" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" +"Codificació per informes XML. Si no es selecciona res es farà servir UTF-8." + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" +"Fitxer amb esquema XSD per a comprovar el contingut de l'informe resultant. " +"Pot restar buit si no es requereix validació." + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "Acció d'informe" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "Tipus d'informe" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" +"El tipus de l'informe que serà renderitzat, cadascun amb el seu propi mètode " +"de renderització. HTML significa que l'informe s'obrirà directament al " +"navegador. ODF significa que l'informe es renderitzarà fent servir " +"Wkhtmltopdf i serà descarregat pel usuari." + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "UTF-8" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "Declaració XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "Codificació XML" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "Configuració informe XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "Esquema de validació XSD" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "'Demo xml report'" +#~ msgstr "'Informe XML de demo'" + +#~ msgid "Display Name" +#~ msgstr "Nom a mostrar" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Darrera modificació el" diff --git a/report_xml/i18n/cs.po b/report_xml/i18n/cs.po new file mode 100644 index 0000000000..ebc5e89b57 --- /dev/null +++ b/report_xml/i18n/cs.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Czech (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Zobrazovaný název" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Naposled upraveno" diff --git a/report_xml/i18n/da.po b/report_xml/i18n/da.po new file mode 100644 index 0000000000..7a6639898f --- /dev/null +++ b/report_xml/i18n/da.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/de.po b/report_xml/i18n/de.po new file mode 100644 index 0000000000..7e7797caa8 --- /dev/null +++ b/report_xml/i18n/de.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +# Niki Waibel , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: Niki Waibel , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Bericht" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Bericht" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Bericht" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/el_GR.po b/report_xml/i18n/el_GR.po new file mode 100644 index 0000000000..8d5be34172 --- /dev/null +++ b/report_xml/i18n/el_GR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Αναφορά" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Αναφορά" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Αναφορά" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/en_GB.po b/report_xml/i18n/en_GB.po new file mode 100644 index 0000000000..8427f817ad --- /dev/null +++ b/report_xml/i18n/en_GB.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Display Name" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Last Modified on" diff --git a/report_xml/i18n/es.po b/report_xml/i18n/es.po new file mode 100644 index 0000000000..f9d16ddf12 --- /dev/null +++ b/report_xml/i18n/es.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +# Pedro M. Baeza , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2024-02-11 18:35+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "Informe XML Abstracto" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" +"Añada `` al principio del archivo de " +"informe final." + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "Informe XML de demostración" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" +"Codificación de los informes XML. Si no se selecciona nada, se aplicará " +"UTF-8." + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "Extensión para informes XML, por defecto es `xml`" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" +"Archivo con el esquema XSD para comprobar el contenido del informe de " +"resultados. Puede estar vacío si no se requiere validación." + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "Informar Acción" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "Tipo de Informe" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" +"El tipo de informe que se generará, cada uno con su propio método de " +"generación. HTML significa que el informe se abrirá directamente en el " +"navegador PDF quiere decir que el informe se renderizará utilizando " +"Wkhtmltopdf y será descargado por el usuario." + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "UTF-8" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "Declaración XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "Codificación XML" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "Configuración de Informes XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "Esquema de Validación XSD" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "Extensión Xml" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/es_AR.po b/report_xml/i18n/es_AR.po new file mode 100644 index 0000000000..5c8838007e --- /dev/null +++ b/report_xml/i18n/es_AR.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Mostrar Nombre" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/report_xml/i18n/es_CL.po b/report_xml/i18n/es_CL.po new file mode 100644 index 0000000000..026beaf7be --- /dev/null +++ b/report_xml/i18n/es_CL.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre mostrado" + +#~ msgid "ID" +#~ msgstr "ID (identificación)" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/report_xml/i18n/es_CO.po b/report_xml/i18n/es_CO.po new file mode 100644 index 0000000000..7049241cce --- /dev/null +++ b/report_xml/i18n/es_CO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Iforme" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Iforme" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Iforme" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/es_CR.po b/report_xml/i18n/es_CR.po new file mode 100644 index 0000000000..59d9e5ffc3 --- /dev/null +++ b/report_xml/i18n/es_CR.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/es_DO.po b/report_xml/i18n/es_DO.po new file mode 100644 index 0000000000..94c12cd015 --- /dev/null +++ b/report_xml/i18n/es_DO.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre mostrado" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/report_xml/i18n/es_EC.po b/report_xml/i18n/es_EC.po new file mode 100644 index 0000000000..1c37407a47 --- /dev/null +++ b/report_xml/i18n/es_EC.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre mostrado" + +#~ msgid "ID" +#~ msgstr "ID (identificación)" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/report_xml/i18n/es_ES.po b/report_xml/i18n/es_ES.po new file mode 100644 index 0000000000..48e64ab4c9 --- /dev/null +++ b/report_xml/i18n/es_ES.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre para mostrar" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Última modificación en" diff --git a/report_xml/i18n/es_MX.po b/report_xml/i18n/es_MX.po new file mode 100644 index 0000000000..04d2343559 --- /dev/null +++ b/report_xml/i18n/es_MX.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre desplegado" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima modificacion realizada" diff --git a/report_xml/i18n/es_PE.po b/report_xml/i18n/es_PE.po new file mode 100644 index 0000000000..29f86b75eb --- /dev/null +++ b/report_xml/i18n/es_PE.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nombre a Mostrar" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima Modificación en" diff --git a/report_xml/i18n/es_PY.po b/report_xml/i18n/es_PY.po new file mode 100644 index 0000000000..79a7c7a5ed --- /dev/null +++ b/report_xml/i18n/es_PY.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/es_VE.po b/report_xml/i18n/es_VE.po new file mode 100644 index 0000000000..bef02674a9 --- /dev/null +++ b/report_xml/i18n/es_VE.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Mostrar nombre" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Modificada por última vez" diff --git a/report_xml/i18n/et.po b/report_xml/i18n/et.po new file mode 100644 index 0000000000..279c828900 --- /dev/null +++ b/report_xml/i18n/et.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Estonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Näidatav nimi" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Viimati muudetud" diff --git a/report_xml/i18n/eu.po b/report_xml/i18n/eu.po new file mode 100644 index 0000000000..401a8397e3 --- /dev/null +++ b/report_xml/i18n/eu.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Basque (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Izena erakutsi" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/fa.po b/report_xml/i18n/fa.po new file mode 100644 index 0000000000..59d3ffe9be --- /dev/null +++ b/report_xml/i18n/fa.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Persian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "نام نمایشی" + +#~ msgid "ID" +#~ msgstr "شناسه" + +#~ msgid "Last Modified on" +#~ msgstr "تاریخ آخرین به‌روزرسانی" diff --git a/report_xml/i18n/fi.po b/report_xml/i18n/fi.po new file mode 100644 index 0000000000..70cc015672 --- /dev/null +++ b/report_xml/i18n/fi.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-15 19:59+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Finnish (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nimi" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Viimeksi muokattu" diff --git a/report_xml/i18n/fr.po b/report_xml/i18n/fr.po new file mode 100644 index 0000000000..4e60bb7b9f --- /dev/null +++ b/report_xml/i18n/fr.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# Nicolas JEUDY , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-05 17:53+0000\n" +"PO-Revision-Date: 2018-01-05 17:53+0000\n" +"Last-Translator: Nicolas JEUDY , 2018\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "Rapport xml de démo" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "'Demo xml report'" +#~ msgstr "Rapport xml de démo" + +#~ msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +#~ msgstr "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report" diff --git a/report_xml/i18n/fr_CA.po b/report_xml/i18n/fr_CA.po new file mode 100644 index 0000000000..852f831d43 --- /dev/null +++ b/report_xml/i18n/fr_CA.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-11 06:20+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Afficher le nom" + +#~ msgid "ID" +#~ msgstr "Identifiant" diff --git a/report_xml/i18n/fr_CH.po b/report_xml/i18n/fr_CH.po new file mode 100644 index 0000000000..b48a28e15d --- /dev/null +++ b/report_xml/i18n/fr_CH.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nom affiché" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Dernière modification le" diff --git a/report_xml/i18n/gl.po b/report_xml/i18n/gl.po new file mode 100644 index 0000000000..ef0dcdc004 --- /dev/null +++ b/report_xml/i18n/gl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Informe" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Informe" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Informe" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/gl_ES.po b/report_xml/i18n/gl_ES.po new file mode 100644 index 0000000000..bbd00e1c41 --- /dev/null +++ b/report_xml/i18n/gl_ES.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/he.po b/report_xml/i18n/he.po new file mode 100644 index 0000000000..3792be69a8 --- /dev/null +++ b/report_xml/i18n/he.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "השם המוצג" + +#~ msgid "ID" +#~ msgstr "מזהה" + +#~ msgid "Last Modified on" +#~ msgstr "תאריך שינוי אחרון" diff --git a/report_xml/i18n/hr.po b/report_xml/i18n/hr.po new file mode 100644 index 0000000000..8df8ce9047 --- /dev/null +++ b/report_xml/i18n/hr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/hr_HR.po b/report_xml/i18n/hr_HR.po new file mode 100644 index 0000000000..6810e70a39 --- /dev/null +++ b/report_xml/i18n/hr_HR.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Izvještaj" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Izvještaj" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Izvještaj" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/hu.po b/report_xml/i18n/hu.po new file mode 100644 index 0000000000..13437f0439 --- /dev/null +++ b/report_xml/i18n/hu.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-03 04:09+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Név megjelenítése" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Utolsó frissítés dátuma" diff --git a/report_xml/i18n/id.po b/report_xml/i18n/id.po new file mode 100644 index 0000000000..2660513b3c --- /dev/null +++ b/report_xml/i18n/id.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nama Tampilan" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Terakhir Dimodifikasi pada" diff --git a/report_xml/i18n/it.po b/report_xml/i18n/it.po new file mode 100644 index 0000000000..c9e2a6229e --- /dev/null +++ b/report_xml/i18n/it.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2024-02-12 10:46+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "Report XML astratto" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" +"Aggiungere `` all'inizio del file " +"resoconto finale." + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "Resoconto XML demo" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" +"Codifica per i resoconti XML. Se non è selezionato nulla, verrà applicato " +"UTF-8." + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "Estensione per resoconto XML, predefinito 'xml'" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" +"File con schema XSD per il controllo del contenuto del resoconto risultato. " +"Può essere vuoto se la validazione non è richiesta." + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "Azione resoconto" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "Tipo resoconto" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" +"Il tipo di resoconto che verrà generato, ognuno avente il suo metodo di " +"generazione. HTML vuol dire che il resoconto sarà aperto direttamente nel " +"tuo browser mentre PDF vuol dire che il resoconto sarà generato usando " +"Wkhtmltopdf e scaricato dall'utente." + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "UTF-8" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "Dichiarazione XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "Codifica XML" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "Impostazioni resoconto XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "Schema validazione XSD" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "Estensione XML" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/ja.po b/report_xml/i18n/ja.po new file mode 100644 index 0000000000..9743bc4bd6 --- /dev/null +++ b/report_xml/i18n/ja.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Japanese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "表示名" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "最終更新日" diff --git a/report_xml/i18n/ko.po b/report_xml/i18n/ko.po new file mode 100644 index 0000000000..e044ec2dd6 --- /dev/null +++ b/report_xml/i18n/ko.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Korean (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "표시 이름" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "최근 수정" diff --git a/report_xml/i18n/lt.po b/report_xml/i18n/lt.po new file mode 100644 index 0000000000..b780706759 --- /dev/null +++ b/report_xml/i18n/lt.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Vaizduojamas pavadinimas" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Paskutinį kartą keista" diff --git a/report_xml/i18n/lt_LT.po b/report_xml/i18n/lt_LT.po new file mode 100644 index 0000000000..eb2d31d4df --- /dev/null +++ b/report_xml/i18n/lt_LT.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: reporting-engine (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-11 06:20+0000\n" +"PO-Revision-Date: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/lv.po b/report_xml/i18n/lv.po new file mode 100644 index 0000000000..6776f9ee27 --- /dev/null +++ b/report_xml/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Latvian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/mk.po b/report_xml/i18n/mk.po new file mode 100644 index 0000000000..840c4e08a4 --- /dev/null +++ b/report_xml/i18n/mk.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Прикажи име" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Последна промена на" diff --git a/report_xml/i18n/mn.po b/report_xml/i18n/mn.po new file mode 100644 index 0000000000..9e431a4c73 --- /dev/null +++ b/report_xml/i18n/mn.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Дэлгэцийн Нэр" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Сүүлийн засвар хийсэн огноо" diff --git a/report_xml/i18n/nb.po b/report_xml/i18n/nb.po new file mode 100644 index 0000000000..bd332e2740 --- /dev/null +++ b/report_xml/i18n/nb.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Visnings navn" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Sist oppdatert " diff --git a/report_xml/i18n/nb_NO.po b/report_xml/i18n/nb_NO.po new file mode 100644 index 0000000000..b73d231d6a --- /dev/null +++ b/report_xml/i18n/nb_NO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/nl.po b/report_xml/i18n/nl.po new file mode 100644 index 0000000000..46cb570353 --- /dev/null +++ b/report_xml/i18n/nl.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Te tonen naam" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst bijgewerkt op" diff --git a/report_xml/i18n/nl_BE.po b/report_xml/i18n/nl_BE.po new file mode 100644 index 0000000000..1ef873e3ff --- /dev/null +++ b/report_xml/i18n/nl_BE.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Schermnaam" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Laatst Aangepast op" diff --git a/report_xml/i18n/nl_NL.po b/report_xml/i18n/nl_NL.po new file mode 100644 index 0000000000..2e0d459979 --- /dev/null +++ b/report_xml/i18n/nl_NL.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/pl.po b/report_xml/i18n/pl.po new file mode 100644 index 0000000000..24b9522fb2 --- /dev/null +++ b/report_xml/i18n/pl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Raport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Raport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Raport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/pt.po b/report_xml/i18n/pt.po new file mode 100644 index 0000000000..ad575500f7 --- /dev/null +++ b/report_xml/i18n/pt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/pt_BR.po b/report_xml/i18n/pt_BR.po new file mode 100644 index 0000000000..0c80a219ad --- /dev/null +++ b/report_xml/i18n/pt_BR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/pt_PT.po b/report_xml/i18n/pt_PT.po new file mode 100644 index 0000000000..1b6a31a6d0 --- /dev/null +++ b/report_xml/i18n/pt_PT.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Relatório" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/report_xml.pot b/report_xml/i18n/report_xml.pot new file mode 100644 index 0000000000..f30d4930b6 --- /dev/null +++ b/report_xml/i18n/report_xml.pot @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be " +"applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/ro.po b/report_xml/i18n/ro.po new file mode 100644 index 0000000000..caed55ec35 --- /dev/null +++ b/report_xml/i18n/ro.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Romanian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Nume Afişat" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Ultima actualizare în" diff --git a/report_xml/i18n/ru.po b/report_xml/i18n/ru.po new file mode 100644 index 0000000000..f36595ea40 --- /dev/null +++ b/report_xml/i18n/ru.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Russian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/sk.po b/report_xml/i18n/sk.po new file mode 100644 index 0000000000..0bf1155eaa --- /dev/null +++ b/report_xml/i18n/sk.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Slovak (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Zobraziť meno" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Posledná modifikácia" diff --git a/report_xml/i18n/sl.po b/report_xml/i18n/sl.po new file mode 100644 index 0000000000..8a451bc259 --- /dev/null +++ b/report_xml/i18n/sl.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Poročilo" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Poročilo" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Poročilo" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/sr.po b/report_xml/i18n/sr.po new file mode 100644 index 0000000000..2c5d608263 --- /dev/null +++ b/report_xml/i18n/sr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/sr@latin.po b/report_xml/i18n/sr@latin.po new file mode 100644 index 0000000000..cb35e586c7 --- /dev/null +++ b/report_xml/i18n/sr@latin.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Ime za prikaz" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Zadnja izmjena" diff --git a/report_xml/i18n/sv.po b/report_xml/i18n/sv.po new file mode 100644 index 0000000000..5539f43fe6 --- /dev/null +++ b/report_xml/i18n/sv.po @@ -0,0 +1,126 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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: 2024-06-12 08:56+0000\n" +"Last-Translator: jakobkrabbe \n" +"Language-Team: Swedish (http://www.transifex.com/oca/" +"OCA-reporting-engine-8-0/language/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "Sammanfattning XML-rapport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" +"Lägg till `` i början av filen med " +"slutrapporten." + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "Demo xml-rapport" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "Kodning för XML-rapporter. Om inget väljs kommer UTF-8 att användas." + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "Tillägg för XML-rapporter, standard är `xml`" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" +"Fil med XSD-schema för kontroll av innehållet i resultatrapporten. Kan vara " +"tom om validering inte krävs." + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "Rapportera åtgärd" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "Rapporttyp" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" +"Den typ av rapport som kommer att återges, var och en har sin egen " +"återgivningsmetod. HTML innebär att rapporten öppnas direkt i din webbläsare " +"PDF innebär att rapporten renderas med Wkhtmltopdf och laddas ner av " +"användaren." + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "UTF-8" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "XML" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "XML-deklaration" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "XML-kodning" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "Inställningar för XML-rapport" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "Schema för XSD-validering" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "Xml-tillägg" + +#~ msgid "Display Name" +#~ msgstr "Visa namn" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Senast redigerad" diff --git a/report_xml/i18n/th.po b/report_xml/i18n/th.po new file mode 100644 index 0000000000..6e5990a3e7 --- /dev/null +++ b/report_xml/i18n/th.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Thai (http://www.transifex.com/oca/OCA-reporting-engine-8-0/" +"language/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "ชื่อที่ใช้แสดง" + +#~ msgid "ID" +#~ msgstr "รหัส" + +#~ msgid "Last Modified on" +#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ" diff --git a/report_xml/i18n/tr.po b/report_xml/i18n/tr.po new file mode 100644 index 0000000000..c6a4d3902c --- /dev/null +++ b/report_xml/i18n/tr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#, fuzzy +#~ msgid "ir.actions.report" +#~ msgstr "ir.actions.report.xml" diff --git a/report_xml/i18n/tr_TR.po b/report_xml/i18n/tr_TR.po new file mode 100644 index 0000000000..39c22683a5 --- /dev/null +++ b/report_xml/i18n/tr_TR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-13 02:43+0000\n" +"PO-Revision-Date: 2017-07-13 02:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +#, fuzzy +msgid "Report Action" +msgstr "Rapor" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +#, fuzzy +msgid "Report Type" +msgstr "Rapor" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +#, fuzzy +msgid "XML Rreport Settings" +msgstr "Rapor" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" diff --git a/report_xml/i18n/uk.po b/report_xml/i18n/uk.po new file mode 100644 index 0000000000..5ddb5ce9be --- /dev/null +++ b/report_xml/i18n/uk.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Назва для відображення" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Остання модифікація" diff --git a/report_xml/i18n/vi.po b/report_xml/i18n/vi.po new file mode 100644 index 0000000000..3c6e6102d1 --- /dev/null +++ b/report_xml/i18n/vi.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "Tên hiển thị" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "Sửa lần cuối vào" diff --git a/report_xml/i18n/vi_VN.po b/report_xml/i18n/vi_VN.po new file mode 100644 index 0000000000..6bf7a7b06f --- /dev/null +++ b/report_xml/i18n/vi_VN.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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: 2016-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-" +"reporting-engine-8-0/language/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "ID" +#~ msgstr "ID" diff --git a/report_xml/i18n/zh_CN.po b/report_xml/i18n/zh_CN.po new file mode 100644 index 0000000000..9353b56b05 --- /dev/null +++ b/report_xml/i18n/zh_CN.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "显示名称" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Last Modified on" +#~ msgstr "最后修改时间" diff --git a/report_xml/i18n/zh_TW.po b/report_xml/i18n/zh_TW.po new file mode 100644 index 0000000000..7e7cc651a1 --- /dev/null +++ b/report_xml/i18n/zh_TW.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * report_xml +# +# 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-03-11 15:46+0000\n" +"Last-Translator: <>\n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-reporting-" +"engine-8-0/language/zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_report_report_xml_abstract +msgid "Abstract XML Report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_declaration +msgid "" +"Add `` at the start of final report " +"file." +msgstr "" + +#. module: report_xml +#: model:ir.actions.report,name:report_xml.demo_xml_report +msgid "Demo xml report" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_encoding +msgid "" +"Encoding for XML reports. If nothing is selected, then UTF-8 will be applied." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xml_extension +msgid "Extension for XML Reports, by default is `xml`" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__xsd_schema +msgid "" +"File with XSD Schema for checking content of result report. Can be empty if " +"validation is not required." +msgstr "" + +#. module: report_xml +#: model:ir.model,name:report_xml.model_ir_actions_report +msgid "Report Action" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__report_type +msgid "Report Type" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,help:report_xml.field_ir_actions_report__report_type +msgid "" +"The type of the report that will be rendered, each one having its own " +"rendering method. HTML means the report will be opened directly in your " +"browser PDF means the report will be rendered using Wkhtmltopdf and " +"downloaded by the user." +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__xml_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields.selection,name:report_xml.selection__ir_actions_report__report_type__qweb-xml +msgid "XML" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_declaration +msgid "XML Declaration" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_encoding +msgid "XML Encoding" +msgstr "" + +#. module: report_xml +#: model_terms:ir.ui.view,arch_db:report_xml.ir_actions_report_view_form_report_xml +msgid "XML Rreport Settings" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xsd_schema +msgid "XSD Validation Schema" +msgstr "" + +#. module: report_xml +#: model:ir.model.fields,field_description:report_xml.field_ir_actions_report__xml_extension +msgid "Xml Extension" +msgstr "" + +#~ msgid "Display Name" +#~ msgstr "顯示名稱" + +#~ msgid "ID" +#~ msgstr "編號" + +#~ msgid "Last Modified on" +#~ msgstr "最後修改:" diff --git a/report_xml/models/__init__.py b/report_xml/models/__init__.py new file mode 100644 index 0000000000..f7c21950b4 --- /dev/null +++ b/report_xml/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from . import ir_actions_report diff --git a/report_xml/models/ir_actions_report.py b/report_xml/models/ir_actions_report.py new file mode 100644 index 0000000000..1c0550cb4c --- /dev/null +++ b/report_xml/models/ir_actions_report.py @@ -0,0 +1,60 @@ +# Copyright (C) 2014-2015 Grupo ESOC +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from odoo import api, fields, models + + +class IrActionsReport(models.Model): + _inherit = "ir.actions.report" + + report_type = fields.Selection( + selection_add=[("qweb-xml", "XML")], ondelete={"qweb-xml": "set default"} + ) + xsd_schema = fields.Binary( + string="XSD Validation Schema", + attachment=True, + help="File with XSD Schema for checking content of result report. Can be empty " + "if validation is not required.", + ) + xml_encoding = fields.Selection( + selection=[ + ("UTF-8", "UTF-8") # will be used as default even if nothing is selected + ], + string="XML Encoding", + help="Encoding for XML reports. If nothing is selected, then UTF-8 will be " + "applied.", + ) + xml_declaration = fields.Boolean( + string="XML Declaration", + help='Add `` at the start of final report ' + "file.", + ) + xml_extension = fields.Char( + default="xml", + help="Extension for XML Reports, by default is `xml`", + ) + + @api.model + def _render_qweb_xml(self, report_ref, res_ids, data=None): + """ + Call `generate_report` method of report abstract class + `report.` or of standard class for XML report + rendering - `report.report_xml.abstract` + + Args: + * docids(list) - IDs of instances for those report will be generated + * data(dict, None) - variables for report rendering + + Returns: + * str - result content of report + * str - type of result content + """ + report = self._get_report(report_ref) + report_model = self.env.get( + f"report.{report.report_name}", self.env["report.report_xml.abstract"] + ) + return report_model.generate_report( + ir_report=report, # will be used to get settings of report + docids=res_ids, + data=data or {}, + ) diff --git a/report_xml/pyproject.toml b/report_xml/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/report_xml/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/report_xml/readme/CONTRIBUTORS.md b/report_xml/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..a11738d9ce --- /dev/null +++ b/report_xml/readme/CONTRIBUTORS.md @@ -0,0 +1,9 @@ +- Enric Tobella \<\> + +- [Tecnativa](https://www.tecnativa.com): + - Jairo Llopis + +- [Avoin.Systems](https://avoin.systems/): + - Tatiana Deribina + +- Iván Antón \<\> diff --git a/report_xml/readme/CREDITS.md b/report_xml/readme/CREDITS.md new file mode 100644 index 0000000000..f94e6ea0e2 --- /dev/null +++ b/report_xml/readme/CREDITS.md @@ -0,0 +1,2 @@ +- Icon taken from + diff --git a/report_xml/readme/DESCRIPTION.md b/report_xml/readme/DESCRIPTION.md new file mode 100644 index 0000000000..94ee896d46 --- /dev/null +++ b/report_xml/readme/DESCRIPTION.md @@ -0,0 +1,3 @@ +This module was written to extend the functionality of the reporting +engine to support XML reports and allow modules to generate them by code +or by QWeb templates. diff --git a/report_xml/readme/INSTALL.md b/report_xml/readme/INSTALL.md new file mode 100644 index 0000000000..18ebbc068c --- /dev/null +++ b/report_xml/readme/INSTALL.md @@ -0,0 +1,9 @@ +To install this module, you need to: + +- Install [lxml](http://lxml.de/) in Odoo's `$PYTHONPATH`. +- Install the repository + [reporting-engine](https://github.com/OCA/reporting-engine). + +But this module does nothing for the end user by itself, so if you have +it installed it's probably because there is another module that depends +on it. diff --git a/report_xml/readme/USAGE.md b/report_xml/readme/USAGE.md new file mode 100644 index 0000000000..5702160adf --- /dev/null +++ b/report_xml/readme/USAGE.md @@ -0,0 +1,44 @@ +This module is intended as a base engine for other modules to use it, so +no direct result if you are a user. + +## If you are a developer + +To learn from an example, just check the [demo +report](https://github.com/OCA/reporting-engine/blob/13.0/report_xml/demo/demo_report.xml) +on GitHub for the model `res.company` or check it in interface from +companies views. + +To develop with this module, you need to: + +- Create a module. +- Make it depend on this one. +- Follow [instructions to create + reports](https://www.odoo.com/documentation/13.0/reference/reports.html) + having in mind that the `report_type` field in your + `ir.actions.report` record must be `qweb-xml`. + +In case you want to create a [custom +report](https://www.odoo.com/documentation/13.0/reference/reports.html#custom-reports), +the instructions remain the same as for HTML reports, and the method +that you must override is also called `_get_report_values`, even when +this time you are creating a XML report. + +You can make your custom report inherit `report.report_xml.abstract`, +name it in such way `report.`. Also you can add a +XSD file for report validation into `xsd_schema` field of your report +(check [report +definition](https://github.com/OCA/reporting-engine/blob/13.0/report_xml/demo/report.xml)) +and have XSD automatic checking for free. + +You can customize rendering process and validation way via changing +logic of `generate_report` and `validate_report` methods in your report +class. + +You can visit +`http:///report/xml//` to see +your XML report online as a web page. + +For further information, please visit: + +- +- diff --git a/report_xml/reports/__init__.py b/report_xml/reports/__init__.py new file mode 100644 index 0000000000..fff0f44db9 --- /dev/null +++ b/report_xml/reports/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from . import report_report_xml_abstract diff --git a/report_xml/reports/report_report_xml_abstract.py b/report_xml/reports/report_report_xml_abstract.py new file mode 100644 index 0000000000..a691051c69 --- /dev/null +++ b/report_xml/reports/report_report_xml_abstract.py @@ -0,0 +1,120 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from base64 import b64decode +from xml.dom import minidom + +from lxml import etree + +from odoo import api, models +from odoo.exceptions import ValidationError + + +class ReportXmlAbstract(models.AbstractModel): + """ + Model `report.report_xml.abstract`. + + This class provide basic methods for rendering XML report and it's + validation by XSD schema. + """ + + _name = "report.report_xml.abstract" + _description = "Abstract XML Report" + + @api.model + def generate_report(self, ir_report, docids, data=None): + """ + Generate and validate XML report. Use incoming `ir_report` settings + to setup encoding and XMl declaration for result `xml`. + + Methods: + * `_get_rendering_context` `ir.actions.report` - get report variables. + It will call `_get_report_values` of report's class if it's exist. + * `render_template` of `ir.actions.report` - get report content + * `validate_report` - check result content + + Args: + * ir_report(`ir.actions.report`) - report definition instance in Odoo + * docids(list) - IDs of instances for those report will be generated + * data(dict, None) - variables for report rendering + + Returns: + * str - result content of report + * str - `"xml"` + + Extra Info: + * Default encoding is `UTF-8` + """ + # collect variable for rendering environment + data = data or {} + data.setdefault("report_type", "text") + data = ir_report._get_rendering_context(ir_report, docids, data) + + # render template + result_bin = ir_report._render_template(ir_report.report_name, data) + + # prettify result content + # normalize indents + parsed_result_bin = minidom.parseString(result_bin) + result = parsed_result_bin.toprettyxml(indent=" ") + + # remove empty lines + utf8 = "UTF-8" + result = "\n".join( + line for line in result.splitlines() if line and not line.isspace() + ).encode(utf8) + + content = etree.tostring( + etree.fromstring(result), + encoding=ir_report.xml_encoding or utf8, + xml_declaration=ir_report.xml_declaration, + pretty_print=True, + ) + + # validate content + xsd_schema_doc = ir_report.xsd_schema + self.validate_report(xsd_schema_doc, content) + return content, "xml" + + @api.model + def validate_report(self, xsd_schema_doc, content): + """ + Validate final report content against value of `xsd_schema` field + ("XSD Validation Schema") of `ir.actions.report` via `etree` lib. + + Args: + * xsd_schema_doc(byte-string) - report validation schema + * content(str) - report content for validation + + Raises: + * odoo.exceptions.ValidationError - Syntax of final report is wrong + + Returns: + * bool - True + """ + if xsd_schema_doc: + # create validation parser + decoded_xsd_schema_doc = b64decode(xsd_schema_doc) + parsed_xsd_schema = etree.XML(decoded_xsd_schema_doc) + xsd_schema = etree.XMLSchema(parsed_xsd_schema) + parser = etree.XMLParser(schema=xsd_schema) + + try: + # check content + etree.fromstring(content, parser) + except etree.XMLSyntaxError as error: + raise ValidationError(error.msg) from error + return True + + @api.model + def _get_report_values(self, docids, data=None): + """ + Allow to generate extra variables for report environment. + + Args: + * docids(list) - IDs of instances for those report will be generated + * data(dict, None) - variables for report rendering + + Returns: + * dict - extra variables for report render + """ + return data or {} diff --git a/report_xml/static/description/icon.png b/report_xml/static/description/icon.png new file mode 100644 index 0000000000..b1cb528214 Binary files /dev/null and b/report_xml/static/description/icon.png differ diff --git a/report_xml/static/description/icon.svg b/report_xml/static/description/icon.svg new file mode 100644 index 0000000000..5cc9c238ff --- /dev/null +++ b/report_xml/static/description/icon.svg @@ -0,0 +1,3110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + July 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + export + csv + text + + + + + Hendrik Eggers, Beate Kaspar + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/report.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/report_xml/static/description/index.html b/report_xml/static/description/index.html new file mode 100644 index 0000000000..ade5c8c1bd --- /dev/null +++ b/report_xml/static/description/index.html @@ -0,0 +1,502 @@ + + + + + +XML Reports + + + +
+

XML Reports

+ + +

Production/Stable License: AGPL-3 OCA/reporting-engine Translate me on Weblate Try me on Runboat

+

This module was written to extend the functionality of the reporting +engine to support XML reports and allow modules to generate them by code +or by QWeb templates.

+

Table of contents

+ +
+

Installation

+

To install this module, you need to:

+ +

But this module does nothing for the end user by itself, so if you have +it installed it’s probably because there is another module that depends +on it.

+
+
+

Usage

+

This module is intended as a base engine for other modules to use it, so +no direct result if you are a user.

+
+

If you are a developer

+

To learn from an example, just check the demo +report +on GitHub for the model res.company or check it in interface from +companies views.

+

To develop with this module, you need to:

+
    +
  • Create a module.
  • +
  • Make it depend on this one.
  • +
  • Follow instructions to create +reports +having in mind that the report_type field in your +ir.actions.report record must be qweb-xml.
  • +
+

In case you want to create a custom +report, +the instructions remain the same as for HTML reports, and the method +that you must override is also called _get_report_values, even when +this time you are creating a XML report.

+

You can make your custom report inherit report.report_xml.abstract, +name it in such way report.<module.report_name>. Also you can add a +XSD file for report validation into xsd_schema field of your report +(check report +definition) +and have XSD automatic checking for free.

+

You can customize rendering process and validation way via changing +logic of generate_report and validate_report methods in your +report class.

+

You can visit +http://<server-address>/report/xml/<module.report_name>/<ids> to see +your XML report online as a web page.

+

For further information, please visit:

+ +
+
+
+

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 to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
  • Avoin.Systems
  • +
+
+
+

Contributors

+ +
+ +
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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.

+

This module is part of the OCA/reporting-engine project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/report_xml/static/src/js/report/action_manager_report.esm.js b/report_xml/static/src/js/report/action_manager_report.esm.js new file mode 100644 index 0000000000..fc3beae14a --- /dev/null +++ b/report_xml/static/src/js/report/action_manager_report.esm.js @@ -0,0 +1,48 @@ +import {download} from "@web/core/network/download"; +import {registry} from "@web/core/registry"; +import {user} from "@web/core/user"; + +function getReportUrl({report_name, context, data}) { + // Rough copy of action_service.js _getReportUrl method. + let url = `/report/xml/${report_name}`; + const actionContext = context || {}; + if (data && JSON.stringify(data) !== "{}") { + const encodedOptions = encodeURIComponent(JSON.stringify(data)); + const encodedContext = encodeURIComponent(JSON.stringify(actionContext)); + return `${url}?options=${encodedOptions}&context=${encodedContext}`; + } + if (actionContext.active_ids) { + url += `/${actionContext.active_ids.join(",")}`; + } + const userContext = encodeURIComponent(JSON.stringify(user.context)); + return `${url}?context=${userContext}`; +} +async function triggerDownload(action, {onClose}, env) { + // Rough copy of action_service.js _triggerDownload method. + env.services.ui.block(); + const data = JSON.stringify([getReportUrl(action), action.report_type]); + const context = JSON.stringify(user.context); + try { + await download({url: "/report/download", data: {data, context}}); + } finally { + env.services.ui.unblock(); + } + if (action.close_on_report_download) { + return env.services.action.doAction( + {type: "ir.actions.act_window_close"}, + {onClose} + ); + } + if (onClose) { + onClose(); + } +} +registry + .category("ir.actions.report handlers") + .add("xml_handler", async function (action, options, env) { + if (action.report_type === "qweb-xml") { + await triggerDownload(action, options, env); + return true; + } + return false; + }); diff --git a/report_xml/tests/__init__.py b/report_xml/tests/__init__.py new file mode 100644 index 0000000000..d84c9b0ed2 --- /dev/null +++ b/report_xml/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). + +from . import test_report_xml diff --git a/report_xml/tests/test_report_xml.py b/report_xml/tests/test_report_xml.py new file mode 100644 index 0000000000..b378991968 --- /dev/null +++ b/report_xml/tests/test_report_xml.py @@ -0,0 +1,47 @@ +# Copyright 2017 Creu Blanca +# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl). + +import json + +from lxml import etree + +from odoo import http +from odoo.tests import common + + +class TestXmlReport(common.HttpCase): + def test_xml(self): + report_object = self.env["ir.actions.report"] + report_name = "report_xml.demo_report_xml_view" + report = report_object._get_report_from_name(report_name) + docs = self.env["res.company"].search([], limit=1) + self.assertEqual(report.report_type, "qweb-xml") + result_report = report_object._render(report_name, docs.ids, {}) + result_tree = etree.fromstring(result_report[0]) + el = result_tree.xpath("/root/user/name") + self.assertEqual(el[0].text, docs.ensure_one().name) + + def test_xml_extension(self): + self.authenticate("admin", "admin") + report_object = self.env["ir.actions.report"] + report_name = "report_xml.demo_report_xml_view" + report = report_object._get_report(report_name) + # Test changing report to use ".svg" extension + report.write({"xml_extension": "svg"}) + filename = self.get_report_headers().headers.get("Content-Disposition") + self.assertTrue(".svg" in filename) + # Test changing report to use ".ffdata" extension + report.write({"xml_extension": "ffdata"}) + filename = self.get_report_headers().headers.get("Content-Disposition") + self.assertTrue(".ffdata" in filename) + + def get_report_headers(self): + return self.url_open( + url="/report/download", + data={ + "data": json.dumps( + ["/report/xml/report_xml.demo_report_xml_view/1", "qweb-xml"] + ), + "csrf_token": http.Request.csrf_token(self), + }, + ) diff --git a/report_xml/views/ir_actions_report_view.xml b/report_xml/views/ir_actions_report_view.xml new file mode 100644 index 0000000000..80b592c9a3 --- /dev/null +++ b/report_xml/views/ir_actions_report_view.xml @@ -0,0 +1,27 @@ + + + + ir.actions.report.view.form.report.xml + ir.actions.report + + + + + + + + + + + + + + diff --git a/requirements.txt b/requirements.txt index c208f5bc3f..4cdf72bb14 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ # generated from manifests external_dependencies +lxml xlrd xlsxwriter