Browse Source
Merge pull request #143 from etobella/10.0
Merge pull request #143 from etobella/10.0
[10.0][MIG] report_xml migrationpull/152/head
Jordi Ballester Alomar
8 years ago
committed by
GitHub
82 changed files with 6339 additions and 0 deletions
-
94report_xml/README.rst
-
5report_xml/__init__.py
-
25report_xml/__manifest__.py
-
4report_xml/controllers/__init__.py
-
26report_xml/controllers/main.py
-
21report_xml/demo/report.xml
-
43report_xml/i18n/am.po
-
43report_xml/i18n/ar.po
-
43report_xml/i18n/bg.po
-
43report_xml/i18n/bs.po
-
43report_xml/i18n/ca.po
-
43report_xml/i18n/cs.po
-
43report_xml/i18n/da.po
-
44report_xml/i18n/de.po
-
43report_xml/i18n/el_GR.po
-
43report_xml/i18n/en.po
-
43report_xml/i18n/en_GB.po
-
44report_xml/i18n/es.po
-
43report_xml/i18n/es_AR.po
-
43report_xml/i18n/es_CL.po
-
43report_xml/i18n/es_CO.po
-
43report_xml/i18n/es_CR.po
-
43report_xml/i18n/es_DO.po
-
43report_xml/i18n/es_EC.po
-
43report_xml/i18n/es_ES.po
-
43report_xml/i18n/es_MX.po
-
43report_xml/i18n/es_PE.po
-
43report_xml/i18n/es_PY.po
-
43report_xml/i18n/es_VE.po
-
43report_xml/i18n/et.po
-
43report_xml/i18n/eu.po
-
43report_xml/i18n/fa.po
-
43report_xml/i18n/fi.po
-
43report_xml/i18n/fr.po
-
43report_xml/i18n/fr_CA.po
-
43report_xml/i18n/fr_CH.po
-
43report_xml/i18n/gl.po
-
43report_xml/i18n/gl_ES.po
-
43report_xml/i18n/he.po
-
43report_xml/i18n/hr.po
-
43report_xml/i18n/hr_HR.po
-
43report_xml/i18n/hu.po
-
43report_xml/i18n/id.po
-
43report_xml/i18n/it.po
-
43report_xml/i18n/ja.po
-
43report_xml/i18n/ko.po
-
43report_xml/i18n/lt.po
-
43report_xml/i18n/lt_LT.po
-
43report_xml/i18n/lv.po
-
43report_xml/i18n/mk.po
-
43report_xml/i18n/mn.po
-
43report_xml/i18n/nb.po
-
43report_xml/i18n/nb_NO.po
-
43report_xml/i18n/nl.po
-
43report_xml/i18n/nl_BE.po
-
43report_xml/i18n/pl.po
-
43report_xml/i18n/pt.po
-
43report_xml/i18n/pt_BR.po
-
43report_xml/i18n/pt_PT.po
-
43report_xml/i18n/ro.po
-
43report_xml/i18n/ru.po
-
43report_xml/i18n/sk.po
-
44report_xml/i18n/sl.po
-
43report_xml/i18n/sr.po
-
43report_xml/i18n/sr@latin.po
-
43report_xml/i18n/sv.po
-
43report_xml/i18n/th.po
-
43report_xml/i18n/tr.po
-
43report_xml/i18n/tr_TR.po
-
43report_xml/i18n/uk.po
-
43report_xml/i18n/vi.po
-
43report_xml/i18n/vi_VN.po
-
43report_xml/i18n/zh_CN.po
-
43report_xml/i18n/zh_TW.po
-
5report_xml/models/__init__.py
-
49report_xml/models/report_action.py
-
25report_xml/models/report_generator.py
-
BINreport_xml/static/description/icon.png
-
3121report_xml/static/description/icon.svg
-
4report_xml/tests/__init__.py
-
24report_xml/tests/test_report_xml.py
-
9report_xml/views/report_xml_templates.xml
@ -0,0 +1,94 @@ |
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
|
|||
=========== |
|||
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 http://odoo-community.org. |
|||
|
|||
|
|||
.. _custom report: https://www.odoo.com/documentation/8.0/reference/reports.html#custom-reports |
|||
.. _instructions to create reports: https://www.odoo.com/documentation/8.0/reference/reports.html |
|||
.. _reporting-engine: https://github.com/OCA/reporting-engine |
|||
.. _sample module: https://github.com/OCA/reporting-engine/tree/8.0/report_xml_sample |
|||
.. _lxml: http://lxml.de/ |
@ -0,0 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import controllers |
|||
from . import models |
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
{ |
|||
"name": "XML Reports", |
|||
"version": "10.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": [ |
|||
"report", |
|||
], |
|||
"data": [ |
|||
"views/report_xml_templates.xml", |
|||
], |
|||
"demo": [ |
|||
"demo/report.xml", |
|||
] |
|||
} |
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import main |
@ -0,0 +1,26 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from odoo.addons.report.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() |
|||
|
|||
# XML files should be downloaded |
|||
response.headers.set("Content-Type", "text/xml") |
|||
|
|||
return response |
@ -0,0 +1,21 @@ |
|||
<?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" |
|||
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,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: Catalan (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/ca/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: ca\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Veure el nom" |
|||
|
|||
#. 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 "Darrera modificació el" |
|||
|
|||
#. 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: 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,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: Danish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/da/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: da\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Vist 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 "Sidst ændret den" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report |
|||
msgid "Report" |
|||
msgstr "" |
@ -0,0 +1,44 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * report_xml |
|||
# |
|||
# Translators: |
|||
# Rudolf Schnapka <rs@techno-flex.de>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: reporting-engine (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-03-04 05:55+0000\n" |
|||
"PO-Revision-Date: 2017-03-10 13:16+0000\n" |
|||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\n" |
|||
"Language-Team: German (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/de/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: de\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report |
|||
msgid "Base model for reports that need XSD checking" |
|||
msgstr "Basismodell für Berichte, die XSD-Prüfung erfordern" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,display_name:0 |
|||
msgid "Display Name" |
|||
msgstr "Anzeigename" |
|||
|
|||
#. 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 "Zuletzt geändert am" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report |
|||
msgid "Report" |
|||
msgstr "Bericht" |
@ -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: Greek (Greece) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/el_GR/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: el_GR\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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-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,44 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * report_xml |
|||
# |
|||
# Translators: |
|||
# Eduardo Rodríguez Crespo <erocre@gmail.com>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: reporting-engine (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-05-08 09:43+0000\n" |
|||
"PO-Revision-Date: 2016-06-13 21:42+0000\n" |
|||
"Last-Translator: Eduardo Rodríguez Crespo <erocre@gmail.com>\n" |
|||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: es\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report |
|||
msgid "Base model for reports that need XSD checking" |
|||
msgstr "Modelo base para informes que necesitan comprobación XSD" |
|||
|
|||
#. 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 "Informe" |
@ -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,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 (Colombia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/es_CO/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: es_CO\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 Público" |
|||
|
|||
#. 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 el" |
|||
|
|||
#. 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 (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,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: French (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/fr/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fr\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: report_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 à afficher" |
|||
|
|||
#. 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,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,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 (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/gl/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: gl\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Última modificació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-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,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: Croatian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: hr\n" |
|||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
|||
|
|||
#. module: report_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 "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 modificirano" |
|||
|
|||
#. 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: Croatian (Croatia) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/hr_HR/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: hr_HR\n" |
|||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
|||
|
|||
#. module: report_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 "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 modificirano" |
|||
|
|||
#. 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: 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,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: Italian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/it/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: it\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Nome da visualizzare" |
|||
|
|||
#. 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 modifica il" |
|||
|
|||
#. 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: 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,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: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/nb_NO/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: nb_NO\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Vis 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 endret den" |
|||
|
|||
#. 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 (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,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: Polish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pl/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pl\n" |
|||
"Plural-Forms: nplurals=3; plural=(n==1 ? 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 "Wyświetlana nazwa " |
|||
|
|||
#. 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 "Ostatnio modyfikowano" |
|||
|
|||
#. 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: Portuguese (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pt\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Nome" |
|||
|
|||
#. 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 "Modificado a última vez por" |
|||
|
|||
#. 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: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_BR/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pt_BR\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: report_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 "Nome para Mostrar" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,id:0 |
|||
msgid "ID" |
|||
msgstr "Identificação" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,__last_update:0 |
|||
msgid "Last Modified on" |
|||
msgstr "Última atualização em" |
|||
|
|||
#. 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-02-25 05:54+0000\n" |
|||
"PO-Revision-Date: 2016-03-11 15:46+0000\n" |
|||
"Last-Translator: <>\n" |
|||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/pt_PT/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pt_PT\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: report_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 "Nome a Apresentar" |
|||
|
|||
#. 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 Modificação Em" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report |
|||
msgid "Report" |
|||
msgstr "Relatório" |
@ -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,44 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * report_xml |
|||
# |
|||
# Translators: |
|||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: reporting-engine (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-05-04 02:44+0000\n" |
|||
"PO-Revision-Date: 2016-05-03 15:03+0000\n" |
|||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n" |
|||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/sl/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: sl\n" |
|||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report_xml_xsd_checked_report |
|||
msgid "Base model for reports that need XSD checking" |
|||
msgstr "Osnovni model poročil, ki se preverjajo z XSD" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,display_name:0 |
|||
msgid "Display Name" |
|||
msgstr "Prikazni 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 "Zadnjič spremenjeno" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report |
|||
msgid "Report" |
|||
msgstr "Poročilo" |
@ -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,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: Turkish (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: tr\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: report_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 "Görünen İsim" |
|||
|
|||
#. 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 "Son değişiklik" |
|||
|
|||
#. 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-31 06:53+0000\n" |
|||
"PO-Revision-Date: 2016-03-11 15:46+0000\n" |
|||
"Last-Translator: <>\n" |
|||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-reporting-engine-8-0/language/tr_TR/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: tr_TR\n" |
|||
"Plural-Forms: nplurals=1; plural=0;\n" |
|||
|
|||
#. module: report_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 "Görünen ad" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,id:0 |
|||
msgid "ID" |
|||
msgstr "Kimlik" |
|||
|
|||
#. module: report_xml |
|||
#: field:report_xml.xsd_checked_report,__last_update:0 |
|||
msgid "Last Modified on" |
|||
msgstr "En son güncelleme tarihi" |
|||
|
|||
#. module: report_xml |
|||
#: model:ir.model,name:report_xml.model_report |
|||
msgid "Report" |
|||
msgstr "Rapor" |
@ -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,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import report_action |
|||
from . import report_generator |
@ -0,0 +1,49 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/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.xml" |
|||
|
|||
report_type = fields.Selection(selection_add=[("qweb-xml", "XML")]) |
|||
|
|||
def _lookup_report(self, name): |
|||
"""Enable ``qweb-xml`` report lookup.""" |
|||
try: |
|||
return super(ReportAction, self)._lookup_report(name) |
|||
except Exception as ex: |
|||
# Somebody thought it was a good idea to use standard exceptions |
|||
if "qweb-xml" not in ex.message: |
|||
raise ex |
|||
else: |
|||
self._cr.execute( |
|||
"SELECT * FROM ir_act_report_xml WHERE report_name=%s", |
|||
(name,)) |
|||
return self._cr.dictfetchone()["report_name"] |
|||
|
|||
@api.model |
|||
def render_report(self, res_ids, name, data): |
|||
"""Special handling for ``qweb-xml`` reports.""" |
|||
xml_report = self.search([('report_name', '=', name), |
|||
('report_type', '=', 'qweb-xml')], limit=1) |
|||
if xml_report: |
|||
xml_report = xml_report.ensure_one() |
|||
result = self.env["report"].get_html(res_ids, |
|||
xml_report.report_name, |
|||
data=data) |
|||
return ( |
|||
etree.tostring( |
|||
etree.fromstring(result.strip()), |
|||
encoding='UTF-8', xml_declaration=True, pretty_print=True |
|||
), "xml") |
|||
else: |
|||
return super(ReportAction, self).render_report( |
|||
res_ids, name, data) |
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
import logging |
|||
|
|||
from odoo import api, models |
|||
|
|||
_logger = logging.getLogger(__name__) |
|||
|
|||
|
|||
class ReportGenerator(models.Model): |
|||
_inherit = "report" |
|||
|
|||
@api.model |
|||
def _get_report_from_name(self, report_name): |
|||
res = super(ReportGenerator, self)._get_report_from_name(report_name) |
|||
if res: |
|||
return res |
|||
report_obj = self.env['ir.actions.report.xml'] |
|||
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) |
After Width: 100 | Height: 100 | Size: 4.2 KiB |
3121
report_xml/static/description/icon.svg
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import test_report_xml |
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2017 Creu Blanca |
|||
# License AGPL-3.0 or later (http://www.gnu.org/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.xml'] |
|||
report_name = 'report_xml.demo_report_xml_view' |
|||
self.assertEqual( |
|||
report_name, report_object._lookup_report(report_name)) |
|||
docs = self.env['res.company'].search([], limit=1) |
|||
rep = report_object.render_report( |
|||
docs.ids, report_name, {} |
|||
) |
|||
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> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue