Merge pull request #168 from etobella/11.0-mig-report_xml
[MIG] report_xml: Migration to 11.0pull/177/head
commit
936f301d3b
|
@ -0,0 +1,87 @@
|
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: https://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
===========
|
||||
XML Reports
|
||||
===========
|
||||
|
||||
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.
|
||||
|
||||
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
|
||||
=====
|
||||
|
||||
If you are a user
|
||||
-----------------
|
||||
|
||||
You will be able to download XML reports from the *Print* menu found on form
|
||||
and list views.
|
||||
|
||||
If you are a developer
|
||||
----------------------
|
||||
|
||||
To learn from an example, just check the `sample module`_.
|
||||
|
||||
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.xml`` 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
|
||||
``render_html``, even when this time you are creating a XML report.
|
||||
|
||||
You can make your custom report inherit ``report_xml.xsd_checked_report``, name
|
||||
it like your XML ``<template>`` id prepended by ``report.``, add a ``xsd()``
|
||||
method that returns a XSD in a string, and have XSD automatic checking for
|
||||
free.
|
||||
|
||||
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:
|
||||
|
||||
* https://www.odoo.com/forum/help-1
|
||||
* https://github.com/OCA/reporting-engine
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
* Icon taken from http://commons.wikimedia.org/wiki/File:Text-xml.svg.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Jairo Llopis <j.llopis@grupoesoc.es>
|
||||
* Enric Tobella <etobella@creublanca.es>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit https://odoo-community.org.
|
|
@ -0,0 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
{
|
||||
"name": "XML Reports",
|
||||
"version": "11.0.1.0.0",
|
||||
"category": "Reporting",
|
||||
"website": "https://github.com/OCA/reporting-engine",
|
||||
"author": "Grupo ESOC Ingeniería de Servicios, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"license": "AGPL-3",
|
||||
"installable": True,
|
||||
"application": False,
|
||||
"summary": "Allow to generate XML reports",
|
||||
"depends": [
|
||||
"web",
|
||||
],
|
||||
"data": [
|
||||
"views/report_xml_templates.xml",
|
||||
"views/webclient_templates.xml",
|
||||
],
|
||||
"demo": [
|
||||
"demo/report.xml",
|
||||
]
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
from . import main
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
from odoo.addons.web.controllers import main as report
|
||||
from odoo.http import route
|
||||
|
||||
|
||||
class ReportController(report.ReportController):
|
||||
@route()
|
||||
def report_routes(self, reportname, docids=None, converter=None, **data):
|
||||
# Trick the main reporter to think we want an HTML report
|
||||
new_converter = converter if converter != "xml" else "html"
|
||||
response = super(ReportController, self).report_routes(
|
||||
reportname, docids, new_converter, **data)
|
||||
|
||||
# If it was an XML report, just download the generated response
|
||||
if converter == "xml":
|
||||
# XML header must be before any spaces, and it is a common error,
|
||||
# so let's fix that here and make developers happier
|
||||
response.data = response.data.strip()
|
||||
response.headers.set("Content-Type", "text/xml")
|
||||
response.headers.set('Content-length', len(response.data))
|
||||
response.headers.set(
|
||||
'Content-Disposition',
|
||||
'attachment; filename="'+reportname+".xml")
|
||||
return response
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="demo_report_xml_view">
|
||||
<t t-call="report_xml.utf8_header">
|
||||
<root>
|
||||
<user t-foreach="docs" t-as="doc">
|
||||
<name t-esc="doc.name"/>
|
||||
<vat t-esc="doc.vat"/>
|
||||
</user>
|
||||
</root>
|
||||
</t>
|
||||
</template>
|
||||
<report id="demo_xml_report"
|
||||
name="report_xml.demo_report_xml_view"
|
||||
string="Demo xml report"
|
||||
report_type="qweb-xml"
|
||||
print_report_name="'Demo xml report'"
|
||||
file="report_xml.xml"
|
||||
model="res.company"/>
|
||||
|
||||
</odoo>
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Informe"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Niki Waibel <niki.waibel@gmail.com>, 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 <niki.waibel@gmail.com>, 2017\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Bericht"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Αναφορά"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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-05-04 02:44+0000\n"
|
||||
"PO-Revision-Date: 2016-05-03 10:21+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/en/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr "Base model for reports that need XSD checking"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Report"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 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: Pedro M. Baeza <pedro.baeza@gmail.com>, 2017\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Informe"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Iforme"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Informe"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 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 <bole@dajmi5.com>, 2017\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Izvještaj"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Report"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# Peter Hageman <hageman.p@gmail.com>, 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 <hageman.p@gmail.com>, 2017\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=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.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Raport"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Relatório"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Relatório"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Relatório"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Poročilo"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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: Swedish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr "ir.actions.report.xml"
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * report_xml
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.ui.view,arch_db:report_xml.utf8_header
|
||||
msgid "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.actions.report.xml,name:report_xml.demo_xml_report
|
||||
msgid "Demo xml report"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr "Rapor"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_ir_actions_report_xml
|
||||
msgid "ir.actions.report.xml"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,43 @@
|
|||
# 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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report
|
||||
msgid "Base model for reports that need XSD checking"
|
||||
msgstr ""
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,id:0
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: report_xml
|
||||
#: field:report_xml.xsd_checked_report,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
#. module: report_xml
|
||||
#: model:ir.model,name:report_xml.model_report
|
||||
msgid "Report"
|
||||
msgstr ""
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
from . import report_action
|
|
@ -0,0 +1,40 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models
|
||||
from lxml import etree
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ReportAction(models.Model):
|
||||
_inherit = "ir.actions.report"
|
||||
|
||||
report_type = fields.Selection(selection_add=[("qweb-xml", "XML")])
|
||||
|
||||
@api.model
|
||||
def _get_report_from_name(self, report_name):
|
||||
res = super(ReportAction, self)._get_report_from_name(report_name)
|
||||
if res:
|
||||
return res
|
||||
report_obj = self.env['ir.actions.report']
|
||||
qwebtypes = ['qweb-xml']
|
||||
conditions = [('report_type', 'in', qwebtypes),
|
||||
('report_name', '=', report_name)]
|
||||
context = self.env['res.users'].context_get()
|
||||
return report_obj.with_context(context).search(conditions, limit=1)
|
||||
|
||||
@api.model
|
||||
def render_qweb_xml(self, docids, data):
|
||||
result = self.render_qweb_html(docids, data=data)
|
||||
return etree.tostring(
|
||||
etree.fromstring(
|
||||
str(result[0], 'UTF-8').lstrip('\n').lstrip().encode('UTF-8')
|
||||
),
|
||||
encoding='UTF-8',
|
||||
xml_declaration=True,
|
||||
pretty_print=True
|
||||
), "xml"
|
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 94 KiB |
|
@ -0,0 +1,41 @@
|
|||
odoo.define('report_xml.report', function(require){
|
||||
'use strict';
|
||||
|
||||
var ActionManager= require('web.ActionManager');
|
||||
var crash_manager = require('web.crash_manager');
|
||||
var framework = require('web.framework');
|
||||
|
||||
ActionManager.include({
|
||||
ir_actions_report: function (action, options){
|
||||
var self = this;
|
||||
action = _.clone(action);
|
||||
if (action.report_type === 'qweb-xml') {
|
||||
framework.blockUI()
|
||||
var report_xml_url = 'report/xml/' + action.report_name;
|
||||
if(action.context.active_ids){
|
||||
report_xml_url += '/' + action.context.active_ids.join(',');
|
||||
}
|
||||
else{
|
||||
report_xml_url += '?options=' + encodeURIComponent(JSON.stringify(action.data));
|
||||
report_xml_url += '&context=' + encodeURIComponent(JSON.stringify(action.context));
|
||||
}
|
||||
self.getSession().get_file({
|
||||
url: report_xml_url,
|
||||
data: {data: JSON.stringify([
|
||||
report_xml_url,
|
||||
action.report_type,
|
||||
])},
|
||||
error: crash_manager.rpc_error.bind(crash_manager),
|
||||
success: function (){
|
||||
if(action && options && !action.dialog){
|
||||
options.on_close();
|
||||
}
|
||||
},
|
||||
});
|
||||
framework.unblockUI();
|
||||
return
|
||||
}
|
||||
return self._super(action, options);
|
||||
}
|
||||
});
|
||||
});
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
||||
|
||||
from . import test_report_xml
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2017 Creu Blanca
|
||||
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl).
|
||||
|
||||
from lxml import etree
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestXmlReport(common.TransactionCase):
|
||||
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')
|
||||
rep = report.render(docs.ids, {})
|
||||
root = etree.fromstring(rep[0])
|
||||
el = root.xpath('/root/user/name')
|
||||
self.assertEqual(el[0].text, docs.ensure_one().name)
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="utf8_header">
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<t t-raw="0"/>
|
||||
</template>
|
||||
|
||||
</odoo>
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<template id="report_xml.assets_backend" inherit_id="web.assets_backend">
|
||||
<xpath expr="." position="inside">
|
||||
<script type="text/javascript" src="/report_xml/static/src/js/report/qwebactionmanager.js"/>
|
||||
</xpath>
|
||||
|
||||
</template>
|
||||
</odoo>
|
Loading…
Reference in New Issue